{% extends "layout.html" %} {% block title %}{{column.name}} - {{siteConfig.site_name}}{% endblock %} {% block content %}

{{column.name}}

{% if column.name_en %}
{{column.name_en}}
{% endif %} {% if column.description %}
{{column.description}}
{% endif %}
{% if children and children.length > 0 %}
{% for child in children %} {{child.name}} {% endfor %}
{% endif %}
您的位置: 首页> {{column.name}} {% if currentChild %} >{{currentChild.name}} {% endif %}
{% if currentChild %}

{{currentChild.name}}

{% endif %} {% if contentData.type == 'page' %} {% include "column/_page.html" %} {% elif contentData.type == 'article' %} {% include "column/_article.html" %} {% elif contentData.type == 'image' %} {% include "column/_image.html" %} {% elif contentData.type == 'text' %} {% include "column/_text.html" %} {% elif contentData.type == 'person' %} {% include "column/_person.html" %} {% elif contentData.type == 'job' %} {% include "column/_job.html" %} {% else %}
暂无内容
{% endif %}
{% include "common/_footer.html" %} {% endblock %}