-
Notifications
You must be signed in to change notification settings - Fork 99
/
index.html
27 lines (26 loc) · 957 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
---
layout: default
title: Your galeries
---
<nav>
<a class="nav-link" href="https://github.com/lexoyo/jekyll-slideshow/">Jekyll Slideshow</a>
</nav>
<section class="main-slides">
{% for slide in site.slides %}
<article class="slide">
<iframe class="slideshow-iframe" src="{{ site.github.url }}{{ slide.url }}"></iframe>
<div class="sub-slideshow">
<h1>{{ slide.title }}</h1>
<a class="edit" href="{{site.github.repository_url}}/edit/gh-pages/{{slide.path}}">Edit</a>
<a class="view" href="{{ site.github.url }}{{ slide.url }}">View</a>
<a class="embed" href="#">Embed</a>
<div class="embed-pane hidden">
<p>To embed this slide in a website, add this code to your page:</p>
<input class="embed-input"
value='<iframe src="{{ site.github.url }}{{ slide.url }}" width="100%" height="100%" style="border: none;"></iframe>'
spellcheck="false"></input>
</div>
</div>
</article>
{% endfor %}
</section>