blob: 302f617813a2299f16b7898f84a2b0940ee542b7 [file] [log] [blame]
{% extends "base.html" %}
{% block title %}
{{ article.title|striptags }}
{% endblock %}
{% block head %}
{{ super() }}
{% for description in article.description %}
<meta name="description" content="{{description}}" />
{% endfor %}
{% endblock %}
{% block content %}
<div class="row bg-white pad-vert-lg">
<div class="row">
<h3 class="text-black text-center">{{ article.title }}</h3>
</div>
<div class="post-info text-center">
Published:
<abbr class="published" title="{{ article.date.isoformat() }}">
{{ article.locale_date }}
</abbr>
<br>
Tagged:
{% for tag in article.tags %}
<a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}</a>
{% endfor %}
</div>
<div class="row">
<div class="col-20 no-float auto-margin">
<div class="row">
<div class="pad-md text-black">{{ article.content }}</div>
</div>
</div>
</div>
</div>
{% endblock %}