-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
coaching.html
93 lines (82 loc) · 2.88 KB
/
coaching.html
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
85
86
87
88
89
90
91
92
93
---
layout: page
title: Techlore Coaching
permalink: /coaching
description: "Individual support, because you deserve to be safe and in control of your online experience."
---
{% include variables.html %}
{% include c_sub-hero.html title=page.title perex=page.description %}
<section>
<div class="container">
<div class="coaching columns is-multiline">
{% for service in t.coaching.services %}
<div class="coaching__box column is-full-mobile is-half-tablet">
{% include c_feature-box.html
icon=service.icon
title=service.title
desc=service.desc
class="is-box-danger has-no-background has-border"
%}
</div>
{% endfor %}
<div class="coaching__box coaching__box--cta column is-two-thirds-tablet m-auto">
{% assign desc = t.coaching.getStarted.desc | markdownify %}
{% include c_feature-box.html
icon="star"
title=t.coaching.getStarted.title
desc=t.coaching.getStarted.desc
buttonText=t.coaching.getStarted.buttonText
buttonLink=site.coaching.links.survey
buttonExternal=true
class="is-box-warning has-no-background has-border has-glare has-content-text-align-left"
buttonClass="is-warning"
%}
</div>
</div>
</div>
</section>
<section>
<div class="container is-max-tablet">
<h2 class="has-text-centered">
{{ t.coaching.testimonials.title }}
</h2>
{%- for testimonial in site.data._en.testimonials -%}
{%- include c_testimonial.html
name=testimonial.name
position=testimonial.position
text=testimonial.text
-%}
{%- endfor -%}
</div>
</section>
<section>
<div class="container is-max-tablet">
<h2 class="has-text-centered">
{{ t.coaching.faq.title }}
</h2>
<div class="faq accordion">
{%- for item in site.data._en.faq -%}
{% assign id = item.title | slugify %}
<div class="accordion__item message py-4">
<input class="accordion__checkbox is-invisible" id="{{ id }}" type="checkbox">
<label class="accordion__label anchor" for="{{ id }}" role="button">
<h3 class="accordion__title is-flex is-align-items-center is-justify-content-space-between">
<span class="is-flex-grow-1">{{ item.title }}</span>
<a href="{{ item.title | slugify | prepend: "#" }}" class="anchor__hash px-2">#</a>
{% include e_render-svg-icon.html dimension=25 icon="arrow-down" inline=true class="accordion__icon icon" %}
</h3>
</label>
<div class="accordion__content message-body" aria-labelledby="{{ id }}">
{% comment %} Local URL handling {% endcomment %}
{% if item.desc contains "[[privacyPolicyUrl]]" %}
{% assign privacyPolicyUrl = site.data._en.navigation.hiddenNav.privacy.url | relative_url %}
{{ item.desc | replace: "[[privacyPolicyUrl]]", privacyPolicyUrl | markdownify }}
{% else %}
{{ item.desc | markdownify }}
{% endif %}
</div>
</div>
{%- endfor -%}
</div>
</div>
</section>