archive.twig

来自「博客系统源码 博客系统源码 博客系统源码」· TWIG 代码 · 共 44 行

TWIG
44
字号
{% extends "layouts/default.twig" %}{% block content %}{% if archives %} {# List? (For all/yearly archives) #}                    {% if GET.year != null %}                    {% for archive in archives %}                    <h1>${ "Archive of %s" | translate | format(archive.year) }</h1>                    {% endfor %}                    {% else %}                    <h1>${ "Archives" | translate }</h1>                    {% endif %}                    {% for archive in archives %}                    {% if GET.year != null %}                    <h2><a href="$archive.url">${ archive.timestamp | strftime("%B" | translate) }</a></h2>                    {% else %}                    <h2><a href="$archive.url">${ archive.timestamp | strftime("%B %Y" | translate) }</a></h2>                    {% endif %}                    <ul>                        {% for post in archive.posts %}                        <li>${ post.created_at | strftime("%d" | translate) }: <a href="$post.url">${ post.title | normalize | truncate(70) }</a></li>                        {% endfor %}                    </ul>                    <br />                    {% endfor %}{% endif %}{% if posts.paginated %} {# Posts? (For daily/monthly archives) #}                    {% if archive.depth == "day" %}                    <h1>${ "Archive of %s" | translate | format(archive.timestamp | strftime("%B %e, %Y" | translate)) }</h1>                    {% endif %}                    {% if archive.depth == "month" %}                    <h1>${ "Archive of %s" | translate | format(archive.timestamp | strftime("%B %Y" | translate)) }</h1>                    {% endif %}                    {% for post in posts.paginated %}                    {% include "feathers/" ~ post.feather ~ ".twig" %}                    {% endfor %}{% endif %}{% if not archives and not posts.paginated %} {# No results #}                    <h2>${ "No Posts" | translate }</h2>                    <p>${ "There aren't any posts in the timeframe you specified." | translate }</p>{% endif %}{% endblock %}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?