sector-8.x-2.0-alpha4/themes/sector_starter/templates/system/html.html.twig
themes/sector_starter/templates/system/html.html.twig
{#
/**
* @file
* Default theme implementation to display the basic html structure of a single
* Drupal page.
*
* Overrides bootstrap theme implementation.
*
*/
#}
{%
set body_classes = [
logged_in ? 'user-logged-in',
not root_path ? 'path-frontpage' : 'path-' ~ root_path|clean_class,
node_type ? 'page-node-type-' ~ node_type|clean_class,
node_status ? 'page-node-status-' ~ node_status|clean_class,
db_offline ? 'db-offline',
]
%}
<!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.addClass(body_classes) }}>
<div class="skip-link">
<a href="#content" class="visually-hidden focusable">
{{ 'Skip to main content'|t }}
</a>
</div>
{{ page_top }}
{{ page }}
{{ page_bottom }}
<js-bottom-placeholder token="{{ placeholder_token|raw }}">
</body>
</html>
