gin-8.x-3.0-alpha22/templates/node/node-edit-form.html.twig
templates/node/node-edit-form.html.twig
{#
/**
* @file
* Theme override for a node edit form.
*
* Two column template for the node add/edit form.
*
* This template will be used when a node edit form specifies 'node_edit_form'
* as its #theme callback. Otherwise, by default, node add/edit forms will be
* themed by form.html.twig.
*
* Available variables:
* - form: The node add/edit form.
*
* @see claro_form_node_form_alter()
*/
#}
<div class="layout-node-form clearfix">
<div class="layout-region layout-region-node-main">
{{ form|without('advanced', 'footer', 'actions', 'gin_sticky', 'gin_sidebar') }}
</div>
<div class="layout-region layout-region-node-actions">
{{ form.gin_sticky }}
</div>
<div class="layout-region layout-region-node-secondary">
<div class="layout-region__content">
{# {{ form.footer }}
{{ form.actions }} #}
{{ form.advanced }}
</div>
</div>
</div>
