html--entity-browser--bootstrap4-modal--iframe.html.twig in Bootstrap 4 Modal 2.x
Same filename and directory in other branches
Theme override for the IFrame entity browser. Template copied from core/modules/system/templates/html.html.twig
Variables:
- logged_in: A flag indicating if user is logged in.
- root_path: The root path of the current page (e.g., node, admin, user).
- node_type: The content type for the current node, if the page is a node.
- css: A list of CSS files for the current page.
- head: Markup for the HEAD element (including meta tags, keyword tags, and so on).
- head_title: List of text elements that make up the head_title variable.
May contain or more of the following:
- title: The title of the page.
- name: The name of the site.
- slogan: The slogan of the site.
- page_top: Initial rendered markup. This should be printed before 'page'.
- page: The rendered page markup.
- page_bottom: Closing rendered markup. This variable should be printed after 'page'.
- styles: Style tags necessary to import all necessary CSS files in the head.
- scripts: Script tags necessary to load the JavaScript files and settings in the head.
- db_offline: A flag indicating if the database is offline.
See also
File
templates/html--entity-browser--bootstrap4-modal--iframe.html.twigView source
- {#
- /**
- * @file
- * Theme override for the IFrame entity browser. Template copied from core/modules/system/templates/html.html.twig
- *
- * Variables:
- * - logged_in: A flag indicating if user is logged in.
- * - root_path: The root path of the current page (e.g., node, admin, user).
- * - node_type: The content type for the current node, if the page is a node.
- * - css: A list of CSS files for the current page.
- * - head: Markup for the HEAD element (including meta tags, keyword tags, and
- * so on).
- * - head_title: List of text elements that make up the head_title variable.
- * May contain or more of the following:
- * - title: The title of the page.
- * - name: The name of the site.
- * - slogan: The slogan of the site.
- * - page_top: Initial rendered markup. This should be printed before 'page'.
- * - page: The rendered page markup.
- * - page_bottom: Closing rendered markup. This variable should be printed after
- * 'page'.
- * - styles: Style tags necessary to import all necessary CSS files in the head.
- * - scripts: Script tags necessary to load the JavaScript files and settings
- * in the head.
- * - db_offline: A flag indicating if the database is offline.
- *
- * @see template_preprocess_html()
- *
- * @ingroup themeable
- */
- #}
- <!DOCTYPE html>
- <html{{ html_attributes }}>
- <head>
- <head-placeholder token="{{ placeholder_token|raw }}">
- <title>{{ head_title|safe_join(' | ') }}</title>
- <css-placeholder token="{{ placeholder_token|raw }}">
- <js-placeholder token="{{ placeholder_token|raw }}">
- </head>
- <body{{ attributes }}>
- <a href="#main-content" class="visually-hidden focusable">
- {{ 'Skip to main content'|t }}
- </a>
- {{ page }}
- <js-bottom-placeholder token="{{ placeholder_token|raw }}">
- </body>
- </html>