-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
42 lines (39 loc) · 979 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
39
40
41
---
title: "Home"
layout: default
weight: 0
---
<section class="hero is-success is-large">
<div class="hero-content">
<div class="container">
<h1 class="title">New Zealand Olympiad in Informatics</h1>
<!--
<h2 class="subtitle">Full Height subtitle</h2>
-->
</div>
</div>
</section>
<!--
<section class="section">
<div class="container">
<div class="heading">
<h1 class="title">New Zealand Olympiad in Informatics</h1>
<h2 class="subtitle">
A simple container to divide your page into <strong>sections</strong>, like the one you're currently reading
</h2>
</div>
</div>
</section>
-->
{% assign sections = site.home_content | sort: "weight" %}
{% for section in sections %}
<section class=section>
<div class="container">
<a name="{{section.anchor}}"></a>
<h2 class="title">{{section.title}}</h2>
<div class="content">
{{section.content}}
</div>
</div>
</section>
{% endfor %}