{% extends "base.html" %} {% block page_title %} {{ post and "编辑文章" or "新建文章" }} {% endblock %} {% block content %} {% if read_only %}

{{ post.title }}

{% if post.tags %}

{% for tag in post.tags %} {{ tag }} {% endfor %}

{% endif %}
{{ post.body }}
{% else %}

{{ post and "编辑文章" or "新建文章" }}

文章以 TXT 文件存储在 blog/ 目录下

{% if post %} {% endif %}
{% endif %} {% endblock %}