ant-design/theme/templates/component.html

12 lines
329 B
HTML
Raw Normal View History

2015-05-07 18:50:36 +08:00
{% extends "layout.html" %}
{% block title %}{{post.title}} - {{config.site.name}}{% endblock %}
{% block description %}{% if post.summay %}{{post.summary}}{% endif %}{% endblock %}
{% block main -%}
2015-05-09 17:36:15 +08:00
{%- include "aside.html" %}
2015-05-07 18:50:36 +08:00
<article class="markdown">
<h1>{{ post.title }}</h1>
{{ post.html }}
</article>
{%- endblock %}