all repos — homestead @ b5b64f817f5e62323aff60681a343976a5c54a62

Code for my website

templates/page.html (view raw)

{% extends "base.html" %}

{% block title %}
{{- page.title -}}
{% endblock %}

{% block main %}

{{ page.title }}

{%- if page.taxonomies %} {%- for name, taxon in page.taxonomies %} {{ name | capitalize }}: {%- for item in taxon %} {{ item }} {%- endfor %} {%- endfor %} {%- endif %}

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