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.
34 lines
836 B
34 lines
836 B
7 years ago
|
{% extends "base.html" %}
|
||
|
{% block head %}
|
||
|
{{ super() }}
|
||
|
{% if article.description %}
|
||
|
<meta name="description" content="{{article.description}}" />
|
||
|
{% endif %}
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block content %}
|
||
|
<section id="content" class="body">
|
||
|
<h1 class="entry-title p-name">
|
||
|
<a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a>
|
||
|
</h1>
|
||
|
<div class="entry-subtitle">
|
||
|
A
|
||
|
<span class="entry-category">
|
||
|
<em>{{ article.category }}</em>
|
||
|
</span>
|
||
|
about
|
||
|
<span class="entry-tags">
|
||
|
{% for tag in article.tags %}
|
||
|
<span itemprop="keywords">
|
||
|
<a href="/{{ tag.url }}" rel="tag">{{ tag }}</a>
|
||
|
</span>
|
||
|
{% endfor %}
|
||
|
</span>
|
||
|
published on
|
||
|
<span class="entry-date dt-published">{{ article.date }}</span>
|
||
|
</div>
|
||
|
<div class="entry-content e-content">{{ article.content }}</div>
|
||
|
</section>
|
||
|
|
||
|
{% endblock %}
|