pelican/samples/themes/notmyidea/templates/article.html

19 lines
816 B
HTML

{% extends "base.html" %}
{% block content %}
<section id="content" class="body">
<div class="hentry">
<header> <h2 class="entry-title"><a href="{{ article.url }}" rel="bookmark" title="Permalink to {{ article.title}}">{{ article.title }}</a></h2> </header>
<div class="entry-content">
<footer class="post-info">
<abbr class="published" title="{{ article.date.isoformat() }}">
{{ article.date.strftime('%Y-%m-%d %H:%M') }}
</abbr>
<address class="vcard author">
By <a class="url fn" href="#">{{ article.author }}</a>
</address>
</footer><!-- /.post-info -->
{{ article.content }}
</div><!-- /.entry-content -->
</div>
</section>
{% endblock %}