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.
23 lines
443 B
23 lines
443 B
{% 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="author">
|
|
{{ article.author }}
|
|
</div>
|
|
<br>
|
|
<div class="date">
|
|
{{ article.locale_date }}
|
|
</div>
|
|
</div>
|
|
|
|
<div class="post-content">
|
|
{{ article.content }}
|
|
</div>
|
|
|
|
</article>
|
|
{% endblock %}
|
|
|