-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbasic-page-1.twig
48 lines (47 loc) · 2.09 KB
/
basic-page-1.twig
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
44
45
46
47
{% extends "two_col_page.twig" %}
{% block hero %}{% endblock %}
{% block heading %}{% include "molecules-breadcrumbs" with breadcrumbs %}{% endblock %}
{% block main %}
{% include "base-two-column" %}
{% include "base-three-column" %}
{% embed "twocol.twig" %}
{% block title %}{{ titles.h2(featured_2_col.title) }}{% endblock %}
{% block colclass %}{{ featured_2_col.grid_class }}{% endblock %}
{% block left %}
{% set vars = {"img": featured_2_col.left_card_options.img,
"text" : featured_2_col.left_card_options.text
} %}
{% include "molecules-featured-content-card" with vars %}
{% endblock %}
{% block right %}
{% set vars = {"img": featured_2_col.right_card_options.img,
"text" : featured_2_col.right_card_options.text
} %}
{% include "molecules-featured-content-card" with vars %}
{% endblock %}
{% endembed %}
{% embed "threecol.twig" %}
{% block title %}{{ titles.h2(featured_3_col.title) }}{% endblock %}
{% block colclass %}{{ featured_3_col.grid_class }}{% endblock %}
{% block left %}
{% set vars = {"img": featured_3_col.left_card_options.img,
"text" : featured_3_col.left_card_options.text
} %}
{% include "molecules-featured-content-card" with vars %}
{% endblock %}
{% block center %}
{% set vars = {"img": featured_3_col.center_card_options.img,
"text" : featured_3_col.center_card_options.text
} %}
{% include "molecules-featured-content-card" with vars %}
{% endblock %}
{% block right %}
{% set vars = {"img": featured_3_col.right_card_options.img,
"text" : featured_3_col.right_card_options.text
} %}
{% include "molecules-featured-content-card" with vars %}
{% endblock %}
{% endembed %}
{% include "organisms-blockquote-options" %}
{% endblock %}
{% block sidebar %}{% include "organisms-multiple-element-sidebar" %}{% endblock %}