forked from codrops/GridGallery
-
Notifications
You must be signed in to change notification settings - Fork 62
/
index.html
executable file
·47 lines (44 loc) · 1.09 KB
/
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
---
layout: default
---
<div class="container">
<header class="clearfix">
<h1>{{ site.name }}</h1>
</header>
<div id="grid-gallery" class="grid-gallery">
<section class="grid-wrap">
<ul class="grid">
<li class="grid-sizer"></li><!-- for Masonry column width -->
{% for post in site.posts %}
<li>
<figure>
<img src="{{ site.url }}/img/thumb/{{ post.photo }}" alt="img"/>
<figcaption>
<h3>{{ post.caption_header}}</h3>
<p>{{ post.caption }}</p>
</figcaption>
</figure>
</li>
{% endfor %}
</ul>
</section><!-- // grid-wrap -->
<section class="slideshow">
<ul>
{% for post in site.posts %}
<li>
<figure>
<img src="{{ site.url }}/img/large/{{ post.photo }}" alt="img"/>
<figcaption><h3>{{ post.caption_header}}</h3><p>{{ post.caption }}</p></figcaption>
</figure>
</li>
{% endfor %}
</ul>
<nav>
<span class="icon nav-prev"></span>
<span class="icon nav-next"></span>
<span class="icon nav-close"></span>
</nav>
<div class="info-keys icon">Navigate with arrow keys</div>
</section><!-- // slideshow -->
</div><!-- // grid-gallery -->
</div>