{% extends "base.html" %} {% block content %} <- List {{ page.title }} Published on: {{ page.date }} {% if config.extra.author and config.extra.display_author == true %} By {{config.extra.author}} {% endif %} {% if page.toc and page.extra.toc %} Table of contents {% for h1 in page.toc %} {{ h1.title }} {% if h1.children %} {% for h2 in h1.children %} {{ h2.title }} {% for h3 in h2.children %} {{ h3.title }} {% endfor %} {% endfor %} {% endif %} {% endfor %} {% endif %} {{ page.content | safe }} {% if page.taxonomies.tags %} {% for tag in page.taxonomies.tags %} #{{ tag }} {% endfor %} {% endif %} {% endblock content %}
{% if page.taxonomies.tags %} {% for tag in page.taxonomies.tags %} #{{ tag }} {% endfor %} {% endif %}