exo-notes/monospace/templates/article.html

32 lines
1.1 KiB
HTML

{% extends "base.html" %}
{% block title %}{{ super() }} : {{ article.title }}{% endblock %}
{% block content %}
<article class="h-entry">
<header>
<h1><a href="{{ SITEURL }}" id="site-title"> {#{{ SITENAME }}#} {% if SITESUBTITLE %} <strong>{{ SITESUBTITLE }}</strong>{% endif %}</a> {#:#}
<a class="u-url p-name" href="{{ SITEURL }}/{{ article.url }}" id="page-title">{{ article.title }}</a></h1>
{% if not HIDE_DATE %}<time class="dt-published" datetime="{{ article.date.isoformat() }}">{{ article.locale_date }}</time>{% endif %}
</header>
<div class="e-content">
{{ article.content }}
</div>
{% if article.tags %}
<hr />
<div>
Tags:
{% for tag in article.tags %}
<span itemprop="keywords">
<a href="{{ SITEURL }}/{{ tag.url }}" rel="tag">{{ tag }}</a>{% if not loop.last %}, {% endif %}
</span>
{% endfor %}
</div>
{% endif %}
<div style="display:none" class="h-card">
<img class="u-photo" src="/files/images/me.jpg" alt="A photo of the author." />
<p class="p-name">Kyle Isom</p>
</div>
<p class
</article>
{% endblock %}