mirror of
https://github.com/getpelican/pelican.git
synced 2025-10-15 20:28:56 +02:00
19 lines
892 B
HTML
19 lines
892 B
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
<section id="content" class="body">
|
|
<article>
|
|
<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('%a %d %B %Y') }}
|
|
</abbr>
|
|
<address class="vcard author">
|
|
By <a class="url fn" href="#">{{ article.author }}</a>
|
|
</address>In <a href="{{ BLOGURL }}/category/{{ article.category }}.html">{{ article.category }}</a>
|
|
</footer><!-- /.post-info -->
|
|
{{ article.content }}
|
|
</div><!-- /.entry-content -->
|
|
</article>
|
|
</section>
|
|
{% endblock %}
|