{% block stylesheet %} {% endblock %}

{{ BlogInfo.query.first().title }}

{{ BlogInfo.query.first().signature }}

{% block Content %}
{% for category, message in get_flashed_messages(with_categories=true) %}
{{ message }}
{% endfor %} {% block content %} {% endblock %}
{% block blog_nav_plugin %} {% for plugin in Plugin.query.order_by(Plugin.order.asc()).all() %} {% if plugin.disabled != True %} {% if plugin.content != 'system_plugin' %}
{{ plugin.title }}
{{ plugin.content | safe }}
{% else %}
博客统计

访问量:{{ BlogView.query.first().num_of_view }}

博文总数:{{ Article.query.count() }} 评论总数:{{ Comment.query.count() }}

{% for source in Source.query.all() %} {{ source.name }}{{ source.articles.count() }} {% endfor %}

{% endif %} {% endif %} {% endfor %} {% endblock %}
{% endblock %}
{% block script %} {# csrfToken for Ajax #} {{ moment.include_moment() }} {{ moment.lang('zh-cn') }} {% endblock %}