forked from studioprisoner/photo-stream
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
25 lines (24 loc) · 1.32 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
---
---
<!doctype html>
<html>
{% include head.html %}
<body>
{% assign target = "target" %}
<ul class="grid" id="{{ target }}">
{% assign images = page.images | default: site.static_files | photo_filter %}
{% include photos.html %}
</ul>
<ul class="links">
<li class="rss"><a rel="alternate" type="application/rss+xml" href="{{ site.url }}feed.xml" title="RSS Feed">RSS Feed</a></li>
<li class="github"><a rel="me" href="https://github.com/{{ site.github_username }}/photography" title="Fork on Github">Fork on Github</a></li>
<li class="link"><a rel="me" href="https://{{ site.mastodon_instance }}/@{{ site.mastodon_username }}" title="@{{ site.mastodon_username }} on Mastodon">Mastodon</a></li>
<li class="link"><a rel="me" href="https://github.com/{{ site.github_username }}" title="@{{ site.github_username }} on Github">Github</a></li>
<li class="link"><a rel="me" href="https://instagram.com/{{ site.instagram_username }}" title="@{{ site.instagram_username }} on Instagram">Instagram</a></li>
</ul>
{% include javascript.html %}
{% if page.image_slug %}
<script src="{{ '/js/photos.js' | relative_url }}" data-photo-id="{{ page.image_slug }}" data-photo-url="{{ page.image_slug | relative_url }}" data-target-id="{{ target }}"></script>
{% endif %}
</body>
</html>