diff --git a/themes/homebrewtheme/templates/category.html b/themes/homebrewtheme/templates/category.html index 39a8439..f387a4b 100644 --- a/themes/homebrewtheme/templates/category.html +++ b/themes/homebrewtheme/templates/category.html @@ -1,5 +1,10 @@ {% extends "index.html" %} {% block content_title %} -
Everything pertaining to {{ category }}
+

{{ category }}

+{% for article in articles_page.object_list %} + {% if article.title == 'Introduction' %} +
{{article.content}}
+ {% endif %} +{% endfor %} {% endblock %} diff --git a/themes/homebrewtheme/templates/index.html b/themes/homebrewtheme/templates/index.html index 33a8fae..ec50a0c 100644 --- a/themes/homebrewtheme/templates/index.html +++ b/themes/homebrewtheme/templates/index.html @@ -5,7 +5,7 @@ {% endblock %}
    -{% for article in articles_page.object_list %} +{% for article in articles_page.object_list if not article.title | lower == 'introduction' %}