websegura/pages/tag.njk

27 lines
449 B
Plaintext
Raw Normal View History

2021-02-12 14:30:49 +01:00
---
layout: base
pagination:
data: tags
size: 1
alias: tag
2021-02-13 15:55:22 +01:00
title: "Ranking"
2021-02-13 00:17:38 +01:00
permalink: "l/{{ tag.name | slug }}/"
2021-02-12 14:30:49 +01:00
---
2021-02-13 11:44:11 +01:00
{% from "tabla.njk" import tabla %}
2021-02-13 15:55:22 +01:00
<p id="breadcumbs">
<a href="/">España</a>
-
<a href="/ranking/">Ranking</a>
-
Ranking {{ tag.name }}</p>
2021-02-12 14:30:49 +01:00
2021-02-13 15:55:22 +01:00
<h1>🏆 Ranking {{ tag.description }}</h1>
<section>
<div class="table-wrapper" id="resultados">
{{ tabla(all | tagged(tag), path=page.url) }}
</div>
</section>