-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (38 loc) · 902 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
---
layout: default
---
{% comment %}
Landscape by Pixelarity
pixelarity.com | hello@pixelarity.com
License: pixelarity.com/license
Name:
Homepage
Description:
The homepage of your website.
{% endcomment %}
<!-- Header -->
<header id="header">
<nav id="nav">
<ul>
{% for slide in site.reel %}
<li><a href="#{{ slide.html_id }}">
{{ slide.title }}<span class="extra">{{ slide.title_extra }}</span>
</a></li>
{% endfor %}
</ul>
</nav>
</header>
<!-- Main -->
<div id="main">
<!-- Reel -->
<section class="reel">
{% for slide in site.reel %}
<article id="{{ slide.html_id }}" class="slide {{ slide.class }}">
<img src="{{ site.baseurl }}{{ slide.image }}" alt="" data-position="{{ slide.position }}" />
<div class="inner">
{{ slide.output }}
</div>
</article>
{% endfor %}
</section>
</div>