Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
Drupal Upstream
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ASC IRIS Web Services
Drupal Upstream
Commits
368e396a
Unverified
Commit
368e396a
authored
3 years ago
by
Michael Lee
Committed by
GitHub
3 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request
#478
from ASCWebServices/canini-3
academic programs sidebar links
parents
2844fb51
ed8acb9e
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
web/themes/asc_bootstrap/templates/system/page--academic-programs.html.twig
+178
-0
178 additions, 0 deletions
...tstrap/templates/system/page--academic-programs.html.twig
with
178 additions
and
0 deletions
web/themes/asc_bootstrap/templates/system/page--academic-programs.html.twig
0 → 100644
+
178
−
0
View file @
368e396a
{#
/**
* @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 #}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment