websegura/pages/ranking.njk

27 lines
707 B
Plaintext
Raw Normal View History

2021-02-02 00:32:13 +01:00
---
layout: base
permalink: "/ranking/"
title: "Ranking: Las mejores y las peores webs"
---
{% from "tabla.njk" import tabla %}
2021-02-02 00:32:13 +01:00
<p id="breadcumbs">
<a href="/">España</a>
-
{{ title }}</p>
2021-02-02 00:32:13 +01:00
<h1>🏆
{{ title }}</h1>
2021-02-05 19:43:09 +01:00
2021-02-02 00:32:13 +01:00
<section>
<div class="table-wrapper" id="resultados">
2021-02-05 14:17:53 +01:00
<h2 id="hall-of-fame">🎖 Hall de la fama</h2>
2021-02-02 00:32:13 +01:00
<p>Estos sitios son seguros y tienen una nota A o B.</p>
{{ tabla(all | scoreGt(60), results, path=page.url) }}
2021-02-02 00:32:13 +01:00
<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), results, path=page.url) }}
2021-02-02 00:32:13 +01:00
</div>
</section>