Skip to content
Snippets Groups Projects
Commit 3dafcdbc authored by Martin Leblanc's avatar Martin Leblanc
Browse files

Merge branch 'feature/ISTWCMS-5632-ebremner-drupal-basic-site-container' into...

Merge branch 'feature/ISTWCMS-5632-ebremner-drupal-basic-site-container' into 'feature/ISTWCMS-5509-ebremner-ohana'

ISTWCMS-5632: adding templates for basic site container

See merge request !76
parents 40153b4f babae5d1
No related branches found
No related tags found
1 merge request!76ISTWCMS-5632: adding templates for basic site container
{#
/**
* @file
* Theme override to display a single page.
*
* Available variables:
*
* General utility variables:
* - base_path: The base URL path of the Drupal installation.
* - is_front: A flag indicating if the current page is the front page.
* - logged_in: A flag indicating if the user is registered and signed in.
* - is_admin: A flag indicating if the user has permission to access administration pages.
*
* Site identity:
* - front_page: The URL of the front page. Use this instead of base_path when linking to the front page.
*
* Page content (in order of occurrence in the default page.html.twig):
* - node: Fully loaded node
*
* Regions:
* - page.header: Items for the header region.
* - page.highlighted: Items for the highlighted region.
* - page.primary_menu: Items for the primary menu region.
* - page.secondary_menu: Items for the secondary menu region.
* - page.highlighted: Items for the highlighted content region.
* - page.help: Dynamic help text, mostly for admin pages.
* - page.content: The main content of the current page.
* - page.sidebar_first: Items for the first sidebar.
* - page.sidebar_second: Items for the second sidebar.
* - page.footer: Items for the footer region.
* - page.breadcrumb: Items for the breadcrumb region.
*
* @see template_preprocess_page()
* @see html.html.twig
*/
#}
{% extends '@layouts/site-container/site-container.twig' %}
{% block header %}
{{ page.header }}
{{ page.navigation }}
{{ page.breadcrumb }}
{% endblock %}
{% block highlighted %}
{{ page.highlighted }}
{{ page.help }}
{% endblock %}
{% block main %}
{{ page.preface }}
{{ page.content }}
{{ page.postscript }}
{% endblock %}
{% block footer %}
{{ page.sitefooter }}
{{ page.footer }}
{% endblock %}
{#
/**
* @file
* Theme override to display a region.
*
* Available variables:
* - content: The content for this region, typically blocks.
* - attributes: HTML attributes for the region div.
* - region: The name of the region variable as defined in the theme's
* .info.yml file.
*
* @see template_preprocess_region()
*/
#}
{% embed '@layouts/content/content.twig' with {
'classes': classes
}%}
{% block content %}
{{ content }}
{% endblock %}
{% endembed %}
{#
/**
* @file
* Theme override to display a region.
*
* Available variables:
* - content: The content for this region, typically blocks.
* - attributes: HTML attributes for the region div.
* - region: The name of the region variable as defined in the theme's
* .info.yml file.
*
* @see template_preprocess_region()
*/
#}
{% set social_media = simplify_menu('uw-menu-global-social-media') %}
{% set footer_menu = simplify_menu('uw-menu-global-footer') %}
{% embed '@layouts/footer/footer.twig' with {
"social_media": social_media,
"social_media_placement": "global-site-footer",
"footer_menu": footer_menu.menu_tree
} %}
{% block content %}
{{ content }}
{% endblock %}
{% endembed %}
{#
/**
* @file
* Theme override to display a region.
*
* Available variables:
* - content: The content for this region, typically blocks.
* - attributes: HTML attributes for the region div.
* - region: The name of the region variable as defined in the theme's
* .info.yml file.
*
* @see template_preprocess_region()
*/
#}
{% set search = drupal_form('Drupal\\uw_cfg_common\\Form\\UwSearchForm') %}
{% include '@layouts/header/header.twig' with {
'site_name': site_name,
'faculty': faculty,
'classes': classes,
'nav_items': main_menu,
'secondary_items': secondary_menu,
'home_link': home_link,
'global_message': global_message,
'search': search
}%}
{#
/**
* @file
* Theme override to display a region.
*
* Available variables:
* - content: The content for this region, typically blocks.
* - attributes: HTML attributes for the region div.
* - region: The name of the region variable as defined in the theme's
* .info.yml file.
*
* @see template_preprocess_region()
*/
#}
{% embed '@layouts/highlighted/highlighted.twig' with {
'classes': classes
}%}
{% block content %}
{{ content }}
{% endblock %}
{% endembed %}
Local site footer
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment