From ed8acb9eb17ea91aef5a600c9cc36bb3ac664d28 Mon Sep 17 00:00:00 2001 From: Brian Canini <canini.16@osu.edu> Date: Mon, 14 Mar 2022 15:28:03 -0400 Subject: [PATCH] academic programs sidebar links --- .../system/page--academic-programs.html.twig | 178 ++++++++++++++++++ 1 file changed, 178 insertions(+) create mode 100644 web/themes/asc_bootstrap/templates/system/page--academic-programs.html.twig diff --git a/web/themes/asc_bootstrap/templates/system/page--academic-programs.html.twig b/web/themes/asc_bootstrap/templates/system/page--academic-programs.html.twig new file mode 100644 index 0000000000..28a7336fa9 --- /dev/null +++ b/web/themes/asc_bootstrap/templates/system/page--academic-programs.html.twig @@ -0,0 +1,178 @@ +{# +/** + * @file + * Theme override to display a single page. + * + * The doctype, html, head and body tags are not in this template. Instead they + * can be found in the html.html.twig template in this directory. + * + * Available variables: + * + * General utility variables: + * - base_path: The base URL path of the Drupal installation. Will usually be + * "/" unless you have installed Drupal in a sub-directory. + * - 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. This includes the language domain or prefix. + * + * Page content (in order of occurrence in the default page.html.twig): + * - messages: Status and error messages. Should be displayed prominently. + * - node: Fully loaded node, if there is an automatically-loaded node + * associated with the page and the node ID is the second argument in the + * page's path (e.g. node/12345 and node/12345/revisions, but not + * comment/reply/12345). + * + * Regions: + * - page.navigation: 'Navigation' + * - page.breadcrumb: 'Breadcrumbs' + * - page.content: 'Content' + * - page.events: 'Events' + * - page.news: 'News' + * - page.research: 'Research Projects' + * - page.people: 'People' + * - page.sidebar_first: 'Left Siderbar' + * - page.sidebar_second: 'Right Siderbar' + * - page.footer_one: 'Footer One' + * - page.footer_two: 'Footer Two' + * - page.footer_three: 'Footer Three' + * + * @see template_preprocess_page() + * @see html.html.twig + */ +#} + +<div class="layout-container"> + +{% include directory ~ '/templates/system/includes/_header.twig' %} + + <div id="main-nav"> + <div class="container"> + <nav aria-label="Main"> + {{ page.navigation }} + </nav> + </div> + </div> + <div id="breadcrumb-container"> + <div class="container"> + <nav aria-label="Breadcrumb"> + {{ page.breadcrumb }} + </nav> + </div> + </div> + + {# Main #} +{% block main %} + <div role="main" class="main-container {{ container }} js-quickedit-main-content"> + <div class="container"> + <div class="row"> + + {# Content #} + {% + set content_classes = [ + page.sidebar_menu and page.sidebar_second ? 'col-sm-9', + page.sidebar_menu and page.sidebar_second is empty ? 'col-sm-9', + page.sidebar_second and page.sidebar_menu is empty ? 'col-sm-9', + page.sidebar_menu is empty and page.sidebar_second is empty ? 'col-sm-12' + ] + %} + <section{{ content_attributes.addClass(content_classes) }}> + + + {# Breadcrumbs #} + {% if breadcrumb %} + {% block breadcrumb %} + {{ breadcrumb }} + {% endblock %} + {% endif %} + + {# Content #} + {% block content %} + <a id="main-content"></a> + {{ page.content }} + {% endblock %} + + {# Events #} + {% if events %} + {% block events %} + <a id="main-events"></a> + {{ page.events }} + {% endblock %} + {% endif %} + + {# News #} + {% if news %} + {% block news %} + <a id="main-news"></a> + {{ page.news }} + {% endblock %} + {% endif %} + + {# Research #} + {% if research %} + {% block research %} + <a id="main-research"></a> + {{ page.research }} + {% endblock %} + {% endif %} + + {# People #} + {% if people %} + {% block people %} + <a id="main-people"></a> + {{ page.people }} + {% endblock %} + {% endif %} + + </section> + + {% if page.sidebar_menu or page.sidebar_second %} + <aside class="col-sm-3" role="complementary"> + {% if node.field_ap_contact_advisor.value %} + <div class="ap-sidebar-btn-wrap"> + <a href="{{ node.field_ap_contact_advisor.0.url }}" title="Contact Advisor"> + <div class="btn ap-sidebar-btns"> + Contact Advisor + </div> + </a> + </div> + {% endif %} + <div class="ap-sidebar-btn-wrap"> + <a href="/request-info" title="Request Info"> + <div class="btn ap-sidebar-btns"> + Request Info + </div> + </a> + </div> + + {# Sidebar Second #} + {% if page.sidebar_menu %} + {% block sidebar_menu %} + + {{ page.sidebar_menu }} + + {% endblock %} + {% endif %} + + {# Sidebar Second #} + {% if page.sidebar_second %} + {% block sidebar_second %} + + {{ page.sidebar_second }} + + {% endblock %} + {% endif %} + </aside> + {% endif %} + </div> + </div> +</div> +{% endblock %} + +{% include directory ~ '/templates/system/includes/_footer.twig' %} + +</div>{# /.layout-container #} -- GitLab