{% extends 'base.html' %} {% import '_macros.html' as macros %} {% block title %} Blog_mini -{{ article.title }} {% endblock %} {% block content %}
{% include '_article_info.html' %}

{{ article.content | safe }}

博文最后更新时间: {{ moment(article.update_time.replace(microsecond=0)).format('LLL') }}

{% if current_user.is_authenticated %}
{% endif %}

评论

{% include "_article_comments.html" %}

发表评论

{% include "_submit_comment.html" %}
{% endblock %} {% block stylesheet %} {{ super() }} {% endblock %} {% block script %} {{ super() }} {% endblock %}