aboutsummaryrefslogtreecommitdiffstats
path: root/index.html
blob: 819704fb6e322f5b54d237a7d5fc24fb43c5e232 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
---
layout: frontpage
---
<!-- The Menu Section -->
{% include menu.html %}
<!-- The Welcome Section -->
{% include welcome.html %}
{% for section in site.data.frontpage %}
<!-- The {{ section.name }} section -->
<div class="container offsetanchor" id="{{ section.slug }}">
  <div class="row">
    <hr />
    <h1 class="page-header text-center" style="border-bottom: 0px;margin:40px 0 30px;">{{ section.name }}</h1>
    {% include {{ section.file }} %}
  </div>
</div>

{% endfor %}