-
Notifications
You must be signed in to change notification settings - Fork 330
/
index.html
88 lines (80 loc) · 3.32 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
---
---
<!DOCTYPE html>
<html lang="en">
<head>
<title>The Digital Services Playbook — from the U.S. Digital Service</title>
<meta charset='UTF-8'/>
<meta name='viewport' content='initial-scale=1,maximum-scale=1,user-scalable=no' />
<link href='//fonts.googleapis.com/css?family=Merriweather:400,300,700|Source+Sans+Pro:400,700' rel='stylesheet' type='text/css'>
<link rel='shortcut icon' href='{{site.baseurl}}/assets/images/favicon.ico' type='image/x-icon' />
<link rel="icon" type="image/png" href="{{site.baseurl}}/assets/images/favicon-32x32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="{{site.baseurl}}/assets/images/favicon-16x16.png" sizes="16x16" />
<link href='{{site.baseurl}}/assets/css/styles.css' rel='stylesheet' />
</head>
<body>
<div id="navigation_bar">
<div class="outer_container">
<div class="inner_container">
<a href="#introduction"><h3>Digital Services Playbook</h3></a>
<ul class="nav">
{% for play in site.plays %}
<li class="play_square"><a href="#play{{ play.play_number }}" title="View Play {{ play.play_number }}: {{ play.title }}">{{ play.play_number }}</a></li>
{% endfor %}
</ul>
<div id="menu_icon">
<a href="#plays_index_anchor" title="Return to Index"></a>
</div>
</div>
</div>
</div>
<div id="introduction">
<div class="outer_container">
<div class="inner_container">
<a id="usds_logo" href="https://www.usds.gov" target="_blank" title="Link to the United States Digital Service"><img src='{{site.baseurl}}/assets/images/usds-logo-seal.png' alt="Logo of the United States Digital Service"></a>
{% capture introduction %}{% include introduction.md %}{% endcapture %}
{{ introduction | markdownify }}
<div class="button">
<a href="#plays_index_anchor" title="View the Plays">See the plays</a>
</div>
<div class="button">
<a href="https://github.com/whitehouse/playbook#readme" title="Visit Github to Improve This Content">Help improve this content</a>
</div>
</div>
</div>
</div>
<div id="plays_index">
<div class="outer_container">
<div class="inner_container">
<a class="anchor_offset" id="plays_index_anchor"></a>
<h2>Digital Service Plays</h2>
<div class="columns">
<ol>
{% for play in site.plays %}
<li><a href="#play{{ play.play_number }}" title="View Play {{ play.play_number }}">{{ play.title }}</a></li>
{% endfor %}
</ol>
</div>
<div class="button">
<a href="#play1" title="View the In Detail">In detail</a>
</div>
</div>
</div>
</div>
<div id="plays" class="outer_container">
{% for play in site.plays %}
<div class="inner_container">
<a class="anchor_offset" id="play{{ play.play_number }}"></a>
<h6>PLAY {{ play.play_number }}</h6>
<h2 class="display">{{ play.title }}</h2>
{{ play.output }}
</div>
{% endfor %}
</div>
<script src='{{site.baseurl}}/assets/js/jquery-1.11.1.min.js'></script>
<script src='{{site.baseurl}}/assets/js/scrollspy.js'></script>
<script src='{{site.baseurl}}/assets/js/site.js'></script>
<script async id="_fed_an_js_tag" type="text/javascript" src="{{site.baseurl}}/assets/js/federated-analytics.all.min.js?agency=EOP&sub-agency=USDS"></script>
{% include google-analytics.html %}
</body>
</html>