aboutsummaryrefslogblamecommitdiff
path: root/templates/page.html
blob: 94b39ac13803d62e83e721de0c629837f1bc0b26 (plain) (tree)
1
2
3
4
5
6
7




                                                                          
                         
 




                                                                                                   
                
               
      
 
                          
 
                                

                       
{% extends "base.html" %}

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

{% block content -%}
<h1>{{ page.title }}</h1>

<div class="metadata">
  <span class="date">{{ page.date | date(format="%Y-%m-%d") }}</span>
  {%- if page.taxonomies.tags -%}
     &nbsp;/ {% for tag in page.taxonomies.tags %}
    <span class="tag"><a href="{{ get_taxonomy_url(kind="tags", name=tag) }}">#{{ tag }}</a></span>
    {% endfor %}
  {%- endif -%}
</div>

{{ page.content | safe -}}

<a href="/">☝️ back home</a>

{%- endblock content %}