lost-train/theme/templates/page.html
Dooho Yi bb108f8602 / ‘pelicanconf.py’
/ ‘theme/templates/analytics.html’
/ ‘theme/templates/archives.html’
/ ‘theme/templates/base.html’
/ ‘theme/templates/category.html’
/ ‘theme/templates/index.html’
/ ‘theme/templates/page.html’
/ ‘theme/templates/pagination.html’
/ ‘theme/templates/piwik.html’
/ ‘theme/templates/tags.html’
/ ‘theme/templates/translations.html’
/ ‘theme/templates/twitter.html’
2020-05-05 20:19:48 +09:00

23 lines
438 B
HTML

{% extends "base.html" %}
{% block title %}
{{ page.title }}
{% endblock %}
{% block content %}
<header>
<h1>
<a href="{{ SITEURL }}" id="site-title">
{# {{ SITENAME }} #} {% if SITESUBTITLE %} <strong>{{ SITESUBTITLE }}</strong>{% endif %}
</a> {#:#}
<a href="{{ SITEURL }}/{{ page.url }}" id="page-title">
{{ page.title }}
</a>
</h1>
</header>
<article>
{{ page.content }}
</article>
{% endblock %}