18 lines
450 B
HTML
18 lines
450 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block title %} - {{ article.title }}{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>{{ article.title }}</h1>
|
|
<p class="post-meta">
|
|
Posted on {{ article.locale_date }}
|
|
{% if article.tags %}
|
|
• Tagged with
|
|
{% for tag in article.tags %}
|
|
<a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}</a>{% if not loop.last %},{% endif %}
|
|
{% endfor %}
|
|
{% endif %}
|
|
</p>
|
|
{{ article.content }}
|
|
{% endblock %}
|