lost-train/themes/moe-dark/templates/article.html
Dooho Yi 5cc21c5f58 + ‘themes/moe-dark/LICENSE’
+ ‘themes/moe-dark/README.md’
+ ‘themes/moe-dark/screenshot.png’
+ ‘themes/moe-dark/static/css/main.css’
+ ‘themes/moe-dark/static/css/pygment.css’
+ ‘themes/moe-dark/static/css/tachyons.min.css’
+ ‘themes/moe-dark/static/js/jquery-3.5.0.min.js’
+ ‘themes/moe-dark/templates/analytics.html’
+ ‘themes/moe-dark/templates/archives.html’
+ ‘themes/moe-dark/templates/article.html’
+ ‘themes/moe-dark/templates/author.html’
+ ‘themes/moe-dark/templates/authors.html’
+ ‘themes/moe-dark/templates/base.html’
+ ‘themes/moe-dark/templates/categories.html’
+ ‘themes/moe-dark/templates/category.html’
+ ‘themes/moe-dark/templates/comments.html’
+ ‘themes/moe-dark/templates/disqus_script.html’
+ ‘themes/moe-dark/templates/github.html’
+ ‘themes/moe-dark/templates/index.html’
+ ‘themes/moe-dark/templates/page.html’
+ ‘themes/moe-dark/templates/pagination.html’
+ ‘themes/moe-dark/templates/piwik.html’
+ ‘themes/moe-dark/templates/tag.html’
+ ‘themes/moe-dark/templates/taglist.html’
+ ‘themes/moe-dark/templates/tags.html’
+ ‘themes/moe-dark/templates/translations.html’
+ ‘themes/moe-dark/templates/twitter.html’
2020-05-23 02:42:04 +09:00

18 lines
481 B
HTML

{% extends "base.html" %}
{% block title %}{{ super() }} : {{ article.title }}{% endblock %}
{% block content %}
<article class="title pb2">
<a href="{{ SITEURL }}/{{ article.url }}" class="b 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 %}