{% extends 'templates/main.volt' %} {% block content %} {% set title = article.id > 0 ? '编辑文章' : '发布文章' %} {% set action_url = article.id > 0 ? url({'for':'home.article.update','id':article.id}) : url({'for':'home.article.create'}) %} {% set source_url_display = article.source_type == 1 ? 'display:none;' : 'display:block;' %}
{% if category_options|length > 0 %}
{% endif %} {% if xm_tags|length > 0 %}
{% endif %}
{% endblock %} {% block include_js %} {{ js_include('lib/xm-select.js') }} {{ js_include('lib/kindeditor/kindeditor.min.js') }} {{ js_include('lib/kindeditor/lang/zh-CN.js') }} {{ js_include('home/js/content.editor.js') }} {{ js_include('home/js/article.edit.js') }} {% endblock %}