-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (37 loc) · 1.26 KB
/
index.html
File metadata and controls
43 lines (37 loc) · 1.26 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
---
layout: frontpage
title: Home
---
<!-- Pages are navigated by scrollspy, see body tag -->
<!-- Intro -->
<div id="intro" class="intro">
<div class="intro-body">
<div class="container">
<div class="row justify-content-center">
<div class="col-md-8">
<h1 class="brand-heading">Under Construction</h1>
<p class="intro-text">
{{ site.description}}
</p>
<a href="#about" class="btn btn-circle page-scroll">
<i class="fa fa-angle-double-down animated"></i>
</a>
</div>
</div>
</div>
</div>
</div>
{% for p in site.pages %}
<section id="{{ p.nav-link }}" class="{% cycle 'section-even', 'section-odd' %}">
<div class="container content-section text-center">
<div class="row justify-content-center">
<div {% if p.front-page-width %} class="col-md-{{ p.front-page-width }}" {% else %} class="col-md-8" {% endif %}>
{% if p.title %}
<h2 class="text-center">{{ p.title }}</h2>
{% endif %}
{{ p.content }}
</div>
</div>
</div>
</section>
{% endfor %}