-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·33 lines (33 loc) · 1.24 KB
/
Copy pathindex.html
File metadata and controls
executable file
·33 lines (33 loc) · 1.24 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
---
layout: default
onepage: true
section: fotobox
section_text: "Erfahren Sie mehr"
title: "Ein FotoBox Bild sagt mehr als 1000 Worte"
subtitle: "Mit einer FotoBox von Fotos aus der Box verleihen Sie Ihrem Event den letzten Schliff! Ideal für Geburtstag, [Hochzeit](/fotobox/hochzeit/), Firmenfeier oder Messe."
---
{% for frontitem in site.frontpage %}
<section id="{{ frontitem.section-id }}" class="{{ frontitem.section-class }}">
{% if frontitem.section-heading %}
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">{{ frontitem.section-heading }}</h2>
<hr class="primary">
</div>
</div>
</div>
{% endif %}
<div class="{{ frontitem.container-class | default: 'container' }}">
{{ frontitem.content | markdownify }}
{% if frontitem.section-url %}
<div class="row">
<div class="col-lg-12 text-center">
<hr class="primary">
<a href="{{ site.url | prepend: site.baseurl }}{{ frontitem.section-url }}" class="btn btn-primary btn-xl page-scroll wow tada">{{ frontitem.section-url-title }}</a>
</div>
</div>
{% endif %}
</div>
</section>
{% endfor %}