{% extends "themes.html" %} {% block title %}{{ page.title }} | Zola {% endblock title %} {% block theme_content %}

{{ page.title }}

{{ page.description }}

Author: {% if page.extra.author.homepage %} {{ page.extra.author.name }} {% else %} {{ page.extra.author.name }} {% endif %}

{% if page.extra.minimum_version %}

This theme requires Zola version {{ page.extra.minimum_version }} and above

{% endif %}

License: {{page.extra.license}}

Homepage: {{page.extra.homepage}}

{% if page.extra.demo %}

Live Demo: {{page.extra.demo}}

{% endif %} {% if page.taxonomies["theme-tags"] %}

Tags:

    {% for termname in page.taxonomies["theme-tags"] %} {% set termurl = get_taxonomy_url(kind="theme-tags", name=termname, required=false) %} {% if termurl %}
  • {{ termname }}
  • {% endif %} {% endfor %}
{% endif %}

Last updated: {{page.extra.updated }}


{{page.content | safe}} {% endblock theme_content %}