forked from studioprisoner/photo-stream
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
23 lines (22 loc) · 944 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
---
---
<!doctype html>
<html>
{% include head.html %}
<body>
<ul class="grid">
{% assign images = site.static_files | photo_filter %}
{% for image in images %}
{% include photo.html %}
{% endfor %}
</ul>
<ul class="links">
<!-- You can add links (to your social media profiles for example) below -->
<li class="github"><a rel="me" href="https://github.com/maxvoltar/photo-stream" title="Fork on Github">Github</a></li>
<li><a rel="me" href="https://twitter.com/{{ site.twitter_username }}" title="@{{ site.twitter_username }} on Twitter">Twitter</a></li>
<!-- <li><a rel="me" href="https://github.com/{{ site.github_username }}" title="@{{ site.github_username }} on Github">Github</a></li> -->
<!-- <li><a rel="me" href="https://instagram.com/{{ site.instagram_username }}" title="@{{ site.instagram_username }} on Instagram">Instagram</a></li> -->
</ul>
{% include javascript.html %}
</body>
</html>