forked from git-mad/git-mad.github.io
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathguide.html
More file actions
28 lines (26 loc) · 820 Bytes
/
guide.html
File metadata and controls
28 lines (26 loc) · 820 Bytes
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
---
layout: default
---
<div class="container">
<br>
<div class="card">
<div class="card-body">
<h5 class="card-title">{{ page.title }}</h5>
<div class="embed-responsive embed-responsive-16by9">
<iframe class="embed-responsive-item" src="{{ page.slides_url }}" frameborder="0" allowfullscreen="true" mozallowfullscreen="true" webkitallowfullscreen="true"></iframe>
<br>
</div>
{% if page.download_url %}
<br>
<a class="btn btn-primary btn-block" href="{{ page.download_url }}">Download the presentation.</a>
{% endif %}
</div>
{% if page.additional_links %}
<div class="card-footer">
{% for link in page.additional_links %}
<a class="card-link" href="{{ link.url }}">{{ link.name }}</a>
{% endfor %}
</div>
{% endif %}
</div>
</div>