-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (29 loc) · 884 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
---
---
<!DOCTYPE html>
<html lang="en">
{% include head.html %}
<body>
<div class="page">
<h1 class="page__header">Xfive Days 2019</h1>
<nav>
<ul class="page__items">
{% for page in site.pages %}
{% if page.highlight == true %}
<li class="page__item page__item--highlight">
<a class="page__link" href="{{ page.url | relative_url }}">{{ page.title }}</a>
</li>
{% elsif page.title != null %}
<li class="page__item">
<a class="page__link" href="{{ page.url | relative_url }}">{{ page.title }}</a>
</li>
{% endif %}
{% endfor %}
</ul>
</nav>
<div>
{% include main-footer.html %}
{% include font-loader.html %}
{% include animated-bg.html %}
</body>
</html>