mirror of
https://github.com/ant-design/ant-design.git
synced 2025-01-06 10:48:01 +08:00
11 lines
301 B
HTML
11 lines
301 B
HTML
|
{% extends "layout.html" %}
|
||
|
|
||
|
{% block title %}{{post.title}} - {{config.site.name}}{% endblock %}
|
||
|
{% block description %}{% if post.summay %}{{post.summary}}{% endif %}{% endblock %}
|
||
|
{% block main -%}
|
||
|
<article class="markdown">
|
||
|
<h1>{{ post.title }}</h1>
|
||
|
{{ post.html }}
|
||
|
</article>
|
||
|
{%- endblock %}
|