-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathvert-section.html
More file actions
84 lines (73 loc) · 2.44 KB
/
Copy pathvert-section.html
File metadata and controls
84 lines (73 loc) · 2.44 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{% if vsecloop.now-image %}
<section id="{{vsecloop.sectionid}}" class="vert-section-container {{vsecloop.color}}-bg {{vsecloop.extra-classes}}">
{% else %}
{% capture nextColor %}next-color-{{ nextSection.color }}{% endcapture %}
<section id="{{vsecloop.sectionid}}" class="vert-section-container {{vsecloop.color}}-bg {{vsecloop.extra-classes}}">
{% endif %}
<div class="vert-section-inner grid">
<h4 class="vert-section-breadcrumb">{{page.title}}</h4>
<h2 class="vert-section-title">{{vsecloop.title}}</h2>
<img class="vert-section-large-image" src= '../img/verticals/{{vsecloop.largeimage}}' />
{% for paragraph in vsecloop.paragraphs %}
{% if paragraph.list %}
<ul class="vert-section-points">
{% for paragraphlist in paragraph.list %}
<li>{{paragraphlist}}</li>
{% endfor %}
</ul>
{% elsif paragraph.list-title %}
<h3 class="vert-section-point-title">{{paragraph.list-title}}</h3>
{% elsif paragraph.table %}
<table class="vert-section-table">
{% for tablerow in paragraph.table %}
<tr>
{% for tablecolumn in tablerow.row %}
<td>
{{tablecolumn}}
</td>
{% endfor %}
</tr>
{% endfor %}
</table>
{% else %}
<p>{{paragraph}}</p>
{% endif %}
{% endfor %}
{% for casestudy in vsecloop.casestudies %}
<a class="vert-section-case-study">
{{ casestudy }}
</a>
{% endfor %}
{% for bloglink in vsecloop.bloglinks %}
<div class="vert-section-blog-link">
{% if vsecloop.link-url %}
<a href="{{vsecloop.link-url}}">
{{ bloglink }}
</a>
{% endif %}
</div>
{% endfor %}
</div>
{% if vsecloop.now-image %}
<div class="vert-section-prediction-wrapper slash-shadow">
<div class="grid">
<h3 class="vert-section-prediction-heading">We predict:</h3>
<div class="vert-section-prediction now">
<h4 class="vert-section-prediction-title">Currently:</h4>
<div class="vert-section-prediction-img-wrap">
<img src="../img/verticals/{{vsecloop.now-image}}.svg" />
</div>
</div>
{% if vsecloop.future-image %}
<div class="vert-section-prediction future">
<h4 class="vert-section-prediction-title">In the future:</h4>
<div class="vert-section-prediction-img-wrap">
<img src="../img/verticals/{{vsecloop.future-image}}.svg" />
</div>
</div>
{% endif %}
</div>
</div>
{% endif %}
<!-- /.vert-section-container -->
</section>