-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathscreenshots.html
34 lines (32 loc) · 1.05 KB
/
screenshots.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
---
layout: default
title: Endless Sky screenshots.
---
<h2 class="header">Screenshot Gallery</h2>
<div class="gallery">
{% for image in site.screenshots %}
<img class="gallery-thumb" onclick="openLightbox(this)" src="{{ image.src }}" title="{{ image.title }}" alt="{{ image.alt }}" />
{% endfor %}
</div>
<h2 class="header">Artwork / Wallpapers</h2>
<div class="gallery">
{% for image in site.artwork %}
<a href="{{ image.full }}"><img class="gallery-thumb" src="{{ image.thumb }}" title="{{ image.alt }}" alt="{{ image.alt }}" /></a>
{% endfor %}
</div>
<div id="lightbox-back" onclick="closeLightbox()">
<div id="lightbox">
<img id="lightbox-image" />
<div id="lightbox-previous" onclick="previousLightbox(event);">
<img id="lightbox-previous-arrow" src="/images/lightbox-previous.svg" />
</div>
<div id="lightbox-next" onclick="nextLightbox(event);">
<img id="lightbox-next-arrow" src="/images/lightbox-next.svg" />
</div>
</div>
<br />
<div id="lightbox-caption-back">
<p id="lightbox-title"></p>
<p id="lightbox-caption"></p>
</div>
</div>