forked from DheerajMalisetty/drupal-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage.html
More file actions
29 lines (25 loc) · 631 Bytes
/
Copy pathpage.html
File metadata and controls
29 lines (25 loc) · 631 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<header id="navbar-primary" class="navbar-default header" role="navigation">
<div class="container">
{{page.header}}
</div>
</header>
{{ page.breadcrumb}}
<main role="main">
<div class="main-content">
{{ page.content }}
</div> {#the content goes here #}
{% if page.content_first %}
<aside class="layout-sidebar_first" role="complementory">
{{ page.sidebar_first }}
</aside>
{% endif %}
{% if page.sidebar_second %}
<aside class="layout-sidebar_second" role="complementory">
{{ page.sidebar_second }}
</aside>
</main>
{% if page.footer %}
<footer role="contentinfo">
{{ page.footer }}
</footer>
{% endif %}