{% extends "base.html" %} {% block content %}
{% if section is defined and section.content is defined %} {{ section.content | safe }} {% elif page is defined and page.content is defined %} {{ page.content | safe }} {% else %}

This is a starter template for your Zola site with Tailwind CSS.

Edit the content in content/_index.md to customize this page.

{% endif %}
{% if section is defined and section.pages is defined %}
{% for page in section.pages %}

{{ page.title }}

{% if page.description %}

{{ page.description }}

{% endif %}
{{ page.date | date(format="%B %e, %Y") }}
{% endfor %}
{% endif %} {% endblock %}