mirror of
https://gitlab.com/parroquia-san-leandro/cancionero-web.git
synced 2024-12-22 08:43:33 +01:00
Add <main> tag
This commit is contained in:
parent
3eaed2eaa8
commit
fb3130b12b
2 changed files with 145 additions and 141 deletions
|
@ -6,6 +6,7 @@
|
|||
</head>
|
||||
<body>
|
||||
{% include "header.html" with path="." %}
|
||||
<main>
|
||||
<h2>Índice</h2>
|
||||
<ul class="songs">
|
||||
{% for category in sorted_categories %}
|
||||
|
@ -30,6 +31,7 @@
|
|||
{% endfor %}
|
||||
{% endfor %}
|
||||
</ol>
|
||||
</main>
|
||||
{% include "footer.html" %}
|
||||
</body>
|
||||
</html>
|
|
@ -8,6 +8,7 @@
|
|||
</head>
|
||||
<body>
|
||||
{% include "header.html" with path=".." %}
|
||||
<main>
|
||||
<div class="song">
|
||||
<h2>{{ song.name}}</h2>
|
||||
<a href="../#{{ song.category|slugify }}"><span>Categoría: {{ song.category|title }}</span></a>
|
||||
|
@ -107,6 +108,7 @@
|
|||
<a href="../"><span>Índice</span></a>
|
||||
<a href="../#{{ song.category|slugify }}"><span>Categoría: {{ song.category|title }}</span></a>
|
||||
</div>
|
||||
</main>
|
||||
{% include "footer.html" %}
|
||||
</body>
|
||||
</html>
|
||||
|
|
Loading…
Reference in a new issue