diff --git a/templates/blocks/block--uw-fdsu-theme-resp-uw-block-global-footer-menu.html.twig b/templates/blocks/block--uw-fdsu-theme-resp-uw-block-global-footer-menu.html.twig new file mode 100644 index 0000000000000000000000000000000000000000..08f7989832c1ba0e67c78af41aa7065c2d53e540 --- /dev/null +++ b/templates/blocks/block--uw-fdsu-theme-resp-uw-block-global-footer-menu.html.twig @@ -0,0 +1,3 @@ +{% block content %} + {{ content }} +{% endblock %} diff --git a/templates/menus/menu--uw-menu-global-footer.html.twig b/templates/menus/menu--uw-menu-global-footer.html.twig new file mode 100644 index 0000000000000000000000000000000000000000..58e6230873410fc0797712585ab23e7870965cf4 --- /dev/null +++ b/templates/menus/menu--uw-menu-global-footer.html.twig @@ -0,0 +1,4 @@ +{% include "@components/menu/menu--footer/menu--footer.twig" with { + 'menu_name': 'uw-footer', + 'items': items +} %} diff --git a/templates/regions/region--footer.html.twig b/templates/regions/region--footer.html.twig new file mode 100644 index 0000000000000000000000000000000000000000..2ea8adb2d0ae8ebca963db7a4e6bca392c5834f4 --- /dev/null +++ b/templates/regions/region--footer.html.twig @@ -0,0 +1,26 @@ +{# +/** + * @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') %} + +{% embed '@layouts/footer/footer.twig' with { + "social_media": social_media, + "social_media_placement": "global-site-footer" +} %} + + {% block content %} + {{ content }} + {% endblock %} + +{% endembed %}