You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

33 lines
840 B

{% extends "base.html" %}
{% block title %}{{ page.title }}{%endblock%}
{% block content %}
<section id="content" class="body article box">
<h1 class="entry-title p-name">
<a href="{{ SITEURL }}/{{ page.url }}">{{ page.title }}</a>
</h1>
<div class="entry-subtitle">
<span class="entry-category">
{{ page.category }}
</span>
about
<span class="entry-tags">
{% for tag in page.tags %}
<span itemprop="keywords">
<a href="{{ SITEURL }}/{{ tag.url }}" rel="tag">{{ tag }}</a>
</span>
{% endfor %}
</span>
, published on
<span class="entry-date dt-published">{{ page.date | strftime('%d %B %Y')}}</span>
</div>
<div class="entry-content e-content">{{ page.content }}</div>
{% if page.modified %}
<p>
Last updated: {{ page.locale_modified }}
</p>
{% endif %}
</section>
{% endblock %}