You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
643 B

10 years ago
{% extends "layout.html" %}
10 years ago
{% block title %}
{%- if post.title !== config.site.name %}
10 years ago
{{post.title}} {{ post.meta.chinese }} - {{config.site.name}}
10 years ago
{%- else %}
10 years ago
{{ config.site.name }} - {{ config.site.description }}
10 years ago
{%- endif %}
{% endblock %}
10 years ago
{% block description %}{% if post.summay %}{{post.summary}}{% endif %}{% endblock %}
10 years ago
10 years ago
{% block aside %}
{%- include "aside.html" %}
{% endblock %}
10 years ago
{% block content %}
10 years ago
<section class="main-container">
10 years ago
<article class="markdown">
<h1>{{ post.title }} {{ post.meta.chinese }}</h1>
9 years ago
<div class="toc">{{ post.toc }}</div>
{{ post.html|add_anchor }}
10 years ago
</article>
</section>
{% endblock %}