mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-02 12:09:14 +08:00
12 lines
274 B
HTML
12 lines
274 B
HTML
{% extends "layout.html" %}
|
|
|
|
{% block title %}
|
|
{%- if post.title !== config.site.name %}
|
|
{{post.title}} - {{config.site.name}}
|
|
{%- else %}
|
|
{{config.site.name}}
|
|
{%- endif %}
|
|
{% endblock %}
|
|
|
|
{% block description %}{% if post.summay %}{{post.summary}}{% endif %}{% endblock %}
|