edit_post.twig

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

TWIG
18
字号
{% extends "layout.twig" %}{% block title %}${ "Edit &#8220;%s&#8221;" | translate | format(post.title | escape) }{% endblock %}{% block content %}            ${ post.delete_link('<img src="images/icons/delete.png" alt="delete" />'~ ("Delete" | translate), null, null, "button boo right") }            <h1>${ "Editing &#8220;%s&#8221;" | translate | format(post.title | escape) }</h1>            <form id="edit_form" class="${ post.feather | escape(true) }" action="{% admin "update_post" %}" method="post" accept-charset="utf-8" enctype="multipart/form-data">                <fieldset>{% include "partials/post_fields.twig" %}                    <input type="hidden" name="id" value="$post.id" id="id" />                    <input type="hidden" name="feather" value="${ post.feather | escape(true) }" id="feather" />                    <input type="hidden" name="hash" value="$site.secure_hashkey" id="hash" />                </fieldset>            </form>{% endblock %}

⌨️ 快捷键说明

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