-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathindex.html
59 lines (53 loc) · 2.19 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
48
49
50
51
52
53
54
55
56
57
58
59
---
title: test;
layout: overview
---
<style type="text/css">
</style>
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<span class="navbar-brand">
<a href="http://gitslides.com/">gitslides</a>
/
<a href="https://github.com/riichard">riichard</a>
</span>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
{% comment %}<ul class="nav navbar-nav">{% endcomment %}
{% comment %}<li><a href="#">About %username%</a></li>{% endcomment %}
{% comment %}<li><a href="#">Browse in Github</a></li>{% endcomment %}
{% comment %}<li><a href="#">About gitslides</a></li>{% endcomment %}
{% comment %}</ul>{% endcomment %}
{% comment %}<form class="navbar-form navbar-right" role="search">{% endcomment %}
{% comment %}<div class="form-group">{% endcomment %}
{% comment %}<input type="text" class="form-control" placeholder="Search slides">{% endcomment %}
{% comment %}</div>{% endcomment %}
{% comment %}</form>{% endcomment %}
</div>
</div>
</nav>
<div class="row-fluid">
{% for slide in site.slides %}
<div class="col-md-4 col-sm-6 col-lg-4">
<section class="slide-tile">
<iframe width="100%" height="300" src=".{{ slide.url }}"></iframe>
<a href=".{{ slide.url }}"><i class="glyphicon glyphicon-new-window"></i></a>
<h2><a class="slide-entry" href=".{{ slide.url }}">{{ slide.title }}</a></h2>
</section>
</div>
{% endfor %}
<div class="clear"></div>
</div>
<div class="tagline">
<h3>Proudly made with <span>git slides</span></h3>
<sub>Create Beautiful Slides on GitHub in Minutes with Markdown</sub>
</div>