websegura/pages/ranking.njk
2021-02-06 23:09:38 +01:00

27 lines
689 B
Plaintext

---
layout: base
permalink: "/ranking/"
title: "Ranking: Las mejores y las peores webs"
---
{% from "tabla.njk" import tabla %}
<p id="breadcumbs">
<a href="/">España</a>
-
{{ title }}</p>
<h1>🏆
{{ title }}</h1>
<section>
<div class="table-wrapper" id="resultados">
<h2 id="hall-of-fame">🎖 Hall de la fama</h2>
<p>Estos sitios son seguros y tienen una nota A o B.</p>
{{ tabla(all | scoreGt(60), path=page.url) }}
<h2 id="hall-of-shame">🤦‍♂️ Hall de la vergüenza</h2>
<p>Estos sitios son completamente inseguros, ¡no implementan ninguna medida de seguridad!</p>
{{ tabla(all | testsPassedLt(5), path=page.url) }}
</div>
</section>