-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (34 loc) · 995 Bytes
/
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
---
layout: default
ref: index
lang: de
---
<section class="diagonals" id="hero">
<div class="content">
{% include sections/hero.html %}
</div>
</section>
<section class="diagonals" id="about">
<div class="content">
{% capture my_include %}{% include sections/about.md %}{% endcapture %}
{{ my_include | markdownify }}
</div>
</section>
<section class="diagonals" id="beliefs">
<div class="content">
{% capture my_include %}{% include sections/beliefs.md %}{% endcapture %}
{{ my_include | markdownify }}
</div>
</section>
<section id="services">
<div class="content">
{% capture my_include %}{% include sections/services.md %}{% endcapture %}
{{ my_include | markdownify }}
</div>
</section>
<section class="diagonals" id="contact">
<div class="content">
{% capture my_include %}{% include sections/contact.md %}{% endcapture %}
{{ my_include | markdownify }}
</div>
</section>