tag.twig

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

TWIG
18
字号
{% extends "layouts/default.twig" %}{% block content %}                    {% if posts.paginated %}                    <h1>${ "Posts tagged with %s" | translate("tags") | format(tag | escape) }</h1>                    {% endif %}                    {% for post in posts.paginated %}{% include "feathers/" ~ post.feather ~ ".twig" %}                    {% else %}                    <h1>${ "No Posts" | translate }</h1>                    {% if reason == "tag_not_found" %}                    <p>${ "There are no posts with the tag you specified." | translate("tags") }</p>                    {% else %}                    <p>${ "No tag specified." | translate("tags") }</p>                    {% endif %}                    {% endfor %}{% endblock %}

⌨️ 快捷键说明

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