14 lines
699 B
HTML
14 lines
699 B
HTML
{% extends "base.html" %}
|
|
{% block title %}{{ article.title }}{%endblock%}
|
|
{% block content %}
|
|
<div id="content">
|
|
<div class="header">
|
|
<h1>{{ article.title }}</h2>
|
|
</div>
|
|
<p class="meta"><small><span>{% if article.author %}<a href="{{ SITEURL }}author/{{ article.author }}/">{{ article.author }}</a> - {% endif %}</span><span>{{ article.locale_date }}</span> - <span class="tags">{% if article.tags %}{% for tag in article.tags %}<a href="/tag/{{ tag }}/">{{ tag }}</a>{% if not loop.last %}, {% endif %}{% endfor %}{% endif %}</small></p>
|
|
<div class="entry-content">
|
|
{{ article.content }}
|
|
</div><!-- /.entry-content -->
|
|
</div>
|
|
{% endblock %}
|