diff --git a/templates/base.html b/templates/base.html index 7e24fa28..cff855a3 100644 --- a/templates/base.html +++ b/templates/base.html @@ -84,6 +84,12 @@
+ {% if page.taxonomies and page.taxonomies.faq %}{# Show FAQ breadcrumbs #} + F.A.Q. :: + {% for faqCategory in page.taxonomies.faq %} + {{ faqCategory }} + {% endfor %} + {% endif %} {% block content %}{% endblock %}
diff --git a/templates/faq/single.html b/templates/faq/single.html index 5acde972..67776887 100644 --- a/templates/faq/single.html +++ b/templates/faq/single.html @@ -7,7 +7,6 @@ {% block content %}

F.A.Q. - {{ term.name }}

{%- for faq_page in term.pages | sort(attribute="extra.order") -%} -

{{ faq_page.title }}

- {{ faq_page.content | safe }} +

{{ faq_page.title }}

{%- endfor -%} {% endblock %}