feathers.twig
来自「博客系统源码 博客系统源码 博客系统源码」· TWIG 代码 · 共 51 行
TWIG
51 行
{% extends "layout.twig" %}{% block title %}${ "Feathers" | translate }{% endblock %}{% block content %} <h1>${ "Feathers" | translate }</h1> <div class="enable feather left"> <h2>${ "Enabled" | translate }</h2> <ul class="extend"> {% for safename, feather in enabled_feathers | items %} <li class="$safename"> <a class="$safename info_link" href="javascript:void(0)"><img src="images/icons/info.png" class="info right" /></a> {% if feather.help %} <a href="{% admin "help&id="~feather.help %}" class="help emblem"><img src="images/icons/help.png" alt="help" /></a> {% endif %} ${ "<a href=\"%s\">%s</a> v%s <span class=\"sub\">by %s</span>" | translate | format(feather.url, feather.name | translate(safename), feather.version, feather.author.link) } <div class="expand"> <div class="description"> $feather.description {# translation is done in the controller #} </div> <noscript><a class="enable_button" href="{% admin "disable&feather="~safename %}">${ "Disable" | translate }</a></noscript> </div> </li> {% endfor %} </ul> </div> <div class="disable feather right"> <h2>${ "Disabled" | translate }</h2> <ul class="extend"> {% for safename, feather in disabled_feathers | items %} <li class="$safename"> <a class="$safename info_link" href="javascript:void(0)"><img src="images/icons/info.png" class="info right" /></a> {% if feather.help %} <a href="{% admin "help&id="~feather.help %}" class="help emblem"><img src="images/icons/help.png" alt="help" /></a> {% endif %} ${ "<a href=\"%s\">%s</a> v%s <span class=\"sub\">by %s</span>" | translate | format(feather.url, feather.name | translate(safename), feather.version, feather.author.link) } <div class="expand"> <div class="description"> $feather.description {# translation is done in the controller #} </div> <noscript><a class="disable_button" href="{% admin "enable&feather="~safename %}">${ "Enable" | translate }</a></noscript> </div> </li> {% endfor %} </ul> </div> <div class="clear tip_here"></div> <br /> <a class="button right" href="http://chyrp.net/extend/browse/feathers">${ "Get More Feathers ›" | translate }</a>{% endblock %}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?