-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
152 lines (131 loc) · 3.66 KB
/
index.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
---
layout: default
title: codeklasse
namespace: front-page
permalink: /
permalink_de: /
---
<section
id="title-section"
class="is-fullheight px-6-desktop mx-6-desktop px-4-mobile"
>
{% include front-page-title-section.html %}
</section>
<section
id="what-is-codeklasse-front-page"
class="section"
>
<div class="has-text-centered mb-5">
{% include title-h2.html text="front_page.title_what_is_codeklasse" is_translate_key=true %}
</div>
{% include front-page-what-is-codeklasse.html %}
</section>
<section
id="partners-and-sponsors-front-page"
class="section mx-6-desktop mx-3-tablet mx-5-mobile"
>
<div class="has-text-centered">
{% include title-h2.html text="front_page.title_partners" is_translate_key=true %}
</div>
{% include sponsors-and-partners.html %}
</section>
<section
id="why-use-codeklasse-front-page"
class="section mt-5"
>
{% include front-page-why-use-codeklasse.html %}
<div class="centered-call-to-action-button mt-6">
<a
class="button wrap-button-text is-primary is-medium mb-3"
href="{{ site.lang | prepend: "
/"
}}#contact"
>
<p class="has-text-weight-bold">{% t buttons.get_in_touch_now %}</p>
</a>
<p>{% t buttons.or %} <a
href="{{ site.lang | prepend: "
/"
}}#why-use-codeklasse-front-page"
class="has-text-weight-bold is-underlined"
> {% t buttons.take_another_perspective %}</a></p>
</div>
</section>
<section
id="about"
class="section"
>
<div class="has-text-centered mb-4">
{% include title-h2.html text="front_page.title_team_behind_project" is_translate_key=true %}
</div>
<p class="mb-5 has-text-centered">
{% t front_page.subtitle_team_behind_project %}
</p>
{% include front-page-about-us.html %}
</section>
<section
id="faq-front-page"
class="section mx-6-desktop mx-5-tablet mx-5-mobile"
>
<div class="has-text-centered mb-6">
{% include title-h2.html text="front_page.title_any_questions" is_translate_key=true %}
</div>
{% include front-page-faq.html %}
</section>
<section
id="blog-and-news-front-page"
class="section is-fullheight"
>
<div class="has-text-centered mb-6">
{% include title-h2.html text="navigation_headlines.blog" is_translate_key=true %}
</div>
<div class="columns is-multiline">
{% for post in site.posts limit:3 %}
<div class="column is-one-quarter-desktop is-half-tablet is-one-third-widescreen">
<a
href="{{ site.lang | prepend: "
/"
}}{{
post.url
}}"
>
{% if post.hidden != null and post.hidden != true %}
{% include blog-post-tile.html %}
{% endif %}
</a>
</div>
{% endfor %}
</div>
<h4 class="subtitle is-4 has-text-right is-underlined">
<a
href="{{ site.lang | prepend: "
/"
}}/blog"
>{% t buttons.take_another_perspective %}</a>
</h4>
</section>
<section
id="contact"
class="section"
>
{% include contact-section-alternative.html %}
</section>
<style>
#blogpost-teaser.is-overlay {
/* transition: 1s ease-in-out; */
/* Quicker transition speed is desired according to Liam -> We'll see & test. */
transition: .5s ease-in-out;
}
</style>
<script>
/*
* Trying to silence all iFrame console outputs, however missing fonts etc. don't seem to be affected.
* Anyhow, thanks to https://stackoverflow.com/a/64317635/11515036
*/
const iframes = Array.from(document.getElementsByTagName('iframe'));
for (const item of iframes) {
item.contentWindow.console.log = () => { /* nop */ };
item.contentWindow.console.warn = () => { /* nop */ };
item.contentWindow.console.error = () => { /* nop */ };
}
</script>