feat: work on date menu

This commit is contained in:
bkfox
2023-11-02 21:54:15 +01:00
parent ab231e9a89
commit 87a2ee5a45
30 changed files with 5302 additions and 4116 deletions

View File

@ -16,13 +16,15 @@
{% endfor %}
</section>
<div class="has-text-right">
<a href="{% url "episode-list" parent_slug=program.slug %}"
class="button action"
aria-label="{% translate "Show all program's articles" %}">
{% translate "All episodes" %}
</a>
</div>
<nav class="has-text-right">
<li class="nav-item">
<a href="{% url "episode-list" parent_slug=program.slug %}"
class="button action"
aria-label="{% translate "Show all program's articles" %}">
{% translate "All episodes" %}
</a>
</li>
</nav>
</section>
{% endif %}
@ -37,13 +39,15 @@
{% endfor %}
</section>
<div class="has-text-right">
<a href="{% url "article-list" parent_slug=program.slug %}"
class="button action"
aria-label="{% translate "Show all program's articles" %}">
{% translate "All articles" %}
</a>
</div>
<nav class="has-text-right">
<li class="nav-item">
<a href="{% url "article-list" parent_slug=program.slug %}"
class="button action"
aria-label="{% translate "Show all program's articles" %}">
{% translate "All articles" %}
</a>
</li>
</nav>
</section>
{% endif %}