-
Notifications
You must be signed in to change notification settings - Fork 1
/
page.yml
43 lines (43 loc) · 967 Bytes
/
page.yml
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
'twig_docblock': |2
{#
/**
* @file
* Fepper theme's implementation to display a single page.
*
* @see system/templates/page.html.twig
*/
#}
'page.header': |2
{{ page.header }}
'page.primary_menu': |2
{{ page.primary_menu }}
'page.secondary_menu': |2
{{ page.secondary_menu }}
'page.breadcrumb': |2
{{ page.breadcrumb }}
'page.highlighted': |2
{{ page.highlighted }}
'page.help': |2
{{ page.help }}
'fpo_template_content': |2
{{ page.content }}
'# sidebar_first?': |2
{% if page.sidebar_first %}
'conditional_class': |2
{% if page.sidebar_second is empty %}no-sidebar-second{% endif %}
'page.sidebar_first': |2
{{ page.sidebar_first }}
'/ sidebar_first?': |2
{% endif %}
'# sidebar_second?': |2
{% if page.sidebar_second %}
'page.sidebar_second': |2
{{ page.sidebar_second }}
'/ sidebar_second?': |2
{% endif %}
'# footer?': |2
{% if page.footer %}
'page.footer': |2
{{ page.footer }}
'/ footer?': |2
{% endif %}