forked from benbalter/open-sourcing-government
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
44 lines (36 loc) · 2.08 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
---
---
<!DOCTYPE html>
<html class="no-js">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Open Sourcing Government</title>
<meta name="description" content="Applying the open-collaboration philosophy to the process of governing">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="assets/css/main.css">
<link rel="stylesheet" href="assets/css/pygments.css">
</head>
<body class="impress-not-supported">
<div class="fallback-message">
<p>Your browser <b>doesn't support the features required</b> by impress.js, so you are presented with a simplified version of this presentation.</p>
<p>For the best experience please use the latest <b>Chrome</b>, <b>Safari</b> or <b>Firefox</b> browser.</p>
</div>
<div class="container">
<div id="impress">
{% for page in site.posts reversed %}
<div id="{{ page.title | downcase | replace:" ","-" }}" class="step{% if page.slide %} slide{% endif%}" data-x="{{ page.date | date: "%y" | times: 1000 }}" data-y="{{ page.date | date: "%d" | times: 1000 }}" data-z="{{ page.z }}" scale="{{ page.scale }}" data-rotate-x="{{ page.rotate-x }}" data-rotate-y="{{ page.rotate-y }}" data-rotate-z="{{ page.rotate-z }}">
{% if page.hide_title %}{% else %}
<h1>{% if page.icon %}<i class="icon-{{ page.icon }}"> </i>{% endif %}{% if page.octicon %}<span class="mega-octicon octicon-{{ page.octicon }}"> </span>{% endif %}{{ page.title | replace:"Github","GitHub" }}</h1>
{% endif %}
{{ page.content }}
{% if page.notes %}{% for note in page.notes %}<div class="notes">{{ note }}</div>{% endfor %}{% endif %}
</div>
{% endfor %}
</div>
</div> <!-- /container -->
<script src="assets/js/impress.js"></script>
<script>impress().init();</script>
<script src="assets/js/external-links.js"></script>
</body>
</html>