lost-train/theme/templates/article.html
Dooho Yi 1ae45974ad + ‘content/posts/notes/20200505T050001+0900_palo alto/index.rst’
/ ‘theme/templates/article.html’
/ ‘theme/templates/base.html’
/ ‘theme/templates/category.html’
/ ‘theme/templates/index.html’
2020-05-05 05:18:57 +09:00

18 lines
484 B
HTML

{% extends "base.html" %}
{% block title %}{{ super() }} : {{ article.title }}{% endblock %}
{% block content %}
<article class="title">
<a href="{{ SITEURL }}/{{ article.url }}" class="db b pb2 o-50">
{{ article.title }}
</a>
</article>
<div>
{{ article.content }}
</div>
{% if not HIDE_DATE %}
<time class="db w-100 tr pb4 o-30" datetime="{{ article.date.isoformat() }}">
{{ article.date.isoformat() }}
</time>
{% endif %}
{% endblock %}