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.
28 lines
544 B
28 lines
544 B
4 years ago
|
{% extends "base.html" %}
|
||
|
{% block title %}{{ SITENAME }} - {{ article.title|striptags }}{% endblock %}
|
||
|
|
||
|
{% block content %}
|
||
|
<article class="post">
|
||
|
|
||
|
<h2 class="post-title">{{ article.title }}</h2>
|
||
|
<div class="post-info">
|
||
|
|
||
|
<div class="date">
|
||
|
{{ article.locale_date }}
|
||
|
</div>
|
||
|
|
||
|
{% if article.category %}
|
||
|
<div class="category">
|
||
|
<a href="{{ SITEURL }}/{{ article.category.url }}">{{ article.category }}</a>
|
||
|
</div>
|
||
|
{% endif %}
|
||
|
|
||
|
</div>
|
||
|
|
||
|
<div class="post-content">
|
||
|
{{ article.content }}
|
||
|
</div>
|
||
|
|
||
|
</article>
|
||
|
{% endblock %}
|