diff --git a/templates/base.html b/templates/base.html index b802c1d..ba56a6f 100644 --- a/templates/base.html +++ b/templates/base.html @@ -6,6 +6,9 @@ {% block title %}No Hype AI{% endblock %} {% block head_meta %}{% endblock %} + + + - + +
{% include 'components/nav.html' %} {% include 'components/cookie_banner.html' %} {% if messages %} -
+
{% for message in messages %} -

{{ message }}

+

{{ message }}

{% endfor %}
{% endif %} -
{% block content %}{% endblock %}
+
{% block content %}{% endblock %}
{% include 'components/footer.html' %} diff --git a/templates/blog/article_index_page.html b/templates/blog/article_index_page.html index edeafc4..691dbcc 100644 --- a/templates/blog/article_index_page.html +++ b/templates/blog/article_index_page.html @@ -10,26 +10,39 @@ {% endblock %} {% block content %} -

{{ page.title }}

-
-

Filter by tag

- All - {% for tag in available_tags %} - {{ tag.name }} + + +
+

{{ page.title }}

+ + +
+ All + {% for tag in available_tags %} + {{ tag.name }} + {% endfor %} +
+
+ + +
+ {% for article in articles %} + {% include 'components/article_card.html' with article=article %} + {% empty %} +

No articles found.

{% endfor %} -
-{% for article in articles %} - {% include 'components/article_card.html' with article=article %} -{% empty %} -

No articles found.

-{% endfor %} -