mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-04 17:09:46 +08:00
12 lines
330 B
HTML
12 lines
330 B
HTML
|
{% extends "layout.html" %}
|
||
|
|
||
|
{% block title %}{{post.title}} - {{config.site.name}}{% endblock %}
|
||
|
{% block description %}{% if post.summay %}{{post.summary}}{% endif %}{% endblock %}
|
||
|
{% block main -%}
|
||
|
{%- include "aside.html" %}
|
||
|
<article class="markdown">
|
||
|
<h1>{{ post.title }}</h1>
|
||
|
{{ post.html }}
|
||
|
</article>
|
||
|
{%- endblock %}
|