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.
52 lines
1.8 KiB
52 lines
1.8 KiB
{% extends "base.html" %}
|
|
{% block head %}
|
|
{{ super() }}
|
|
{% if article.description %}
|
|
<meta name="description" content="{{article.description}}" />
|
|
{% endif %}
|
|
|
|
{% if article.tags or article.category or article.keywords %}
|
|
<meta name="keywords" content="{{ [article.tags|join(', '), article.category, article.keywords]|join(', ') }}" />
|
|
{% endif %}
|
|
|
|
{% from 'syndication.html' import syndication with context %}
|
|
{{ syndication(article) }}
|
|
|
|
{% endblock %}
|
|
<div class="file type_folder">
|
|
<a title="../" href="/log/" id="link0" class="type_folder"><img alt="../" src="/icons/back.png" class="type_folder"></a>
|
|
</br>
|
|
<span class="filename">../</span>
|
|
|
|
|
|
{% block content %}
|
|
<section id="content" class="body">
|
|
<header>
|
|
<div class="entry-title">
|
|
<a href="{{ SITEURL }}/{{ article.url }}" rel="bookmark"
|
|
title="Permalink to {{ article.title|striptags }}">{{ article.title }}</a></div>
|
|
{% import 'translations.html' as translations with context %}
|
|
{{ translations.translations_for(article) }}
|
|
</header>
|
|
<footer class="post-info">
|
|
<time class="published" datetime="{{ article.date.isoformat() }}">
|
|
{{ article.locale_date }}
|
|
</time>
|
|
{% if article.modified %}
|
|
<time class="modified" datetime="{{ article.modified.isoformat() }}">
|
|
{{ article.locale_modified }}
|
|
</time>
|
|
{% endif %}
|
|
{% if article.authors %}
|
|
<address class="vcard author">
|
|
By {% for author in article.authors %}
|
|
<a class="url fn" href="{{ SITEURL }}/{{ author.url }}">{{ author }}</a>
|
|
{% endfor %}
|
|
</address>
|
|
{% endif %}
|
|
</footer><!-- /.post-info -->
|
|
<div class="entry-content">
|
|
{{ article.content }}
|
|
</div><!-- /.entry-content -->
|
|
</section>
|
|
{% endblock %}
|
|
|