{% extends "base.html" %} {% block content %}

{% if config.language == "zh" %}博客{% else %}Blog{% endif %}

{% if config.language == "zh" %}按时间整理的文章、笔记和想法。{% else %}Articles, notes, and ideas organized by time.{% endif %}

{% if posts | length == 0 %}

{% if config.language == "zh" %}暂无博客文章。{% else %}No blog posts yet.{% endif %}

{% else %}
{% for post in posts %} {% endfor %}
{% endif %}
{% endblock %} {% block margin %}{% endblock %}