forked from usds/playbook
-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
83 lines (76 loc) · 2.7 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
---
---
<!DOCTYPE html>
<html>
<head>
<title>Guia para serviços públicos online</title>
<meta charset='UTF-8'/>
<meta name='viewport' content='initial-scale=1,maximum-scale=1,user-scalable=no' />
<link rel='shortcut icon' href='./img/favicon.ico' type='image/x-icon' />
<link href='//fonts.googleapis.com/css?family=Merriweather:400,300,700|Open+Sans:300,400' rel='stylesheet' type='text/css'>
<link href='./assets/css/styles.css' rel='stylesheet' />
</head>
<body>
<div id="navigation_bar">
<div class="outer_container">
<div class="inner_container">
<a href="#introduction"><h4>Guia para serviços públicos online</h4></a>
<ul class="nav">
{% for play in site.plays %}
<li class="play_square"><a href="#play{{ play.id }}" title="Ver diretriz {{ play.id }}: {{ play.title }}">{{ play.id }}</a></li>
{% endfor %}
</ul>
<div id="menu_icon">
<a href="#plays_index_anchor" title="Voltar ao índice"></a>
</div>
</div>
</div>
</div>
<div id="introduction">
<div class="outer_container">
<div class="inner_container">
{% capture introduction %}{% include introduction.md %}{% endcapture %}
{{ introduction | markdownify }}
<div class="button">
<a href="#plays_index_anchor" title="Vá para as diretrizes">VEJA AS DIRETRIZES</a>
</div>
<div class="button">
<a href="https://github.com/nucleo-digital/programa-brasil#readme" title="Vá para o Github para melhorar este conteúdo.">AJUDE A MELHORAR ESTE CONTEÚDO</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>
<h3>DIRETRIZES SERVIÇO DIGITAL</h3>
<div class="columns">
<ol>
{% for play in site.plays %}
<li><a href="#play{{ play.id }}" title="Vá para a Diretriz {{ play.id }}">{{ play.title }}</a></li>
{% endfor %}
</ol>
</div>
<div class="button">
<a href="#play1" title="Vá para ver Mais Detalhes">MAIS DETALHES</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.id }}"></a>
<h5>DIRETRIZ {{ play.id }}</h5>
<h2>{{ play.title }}</h2>
{{ play.output }}
</div>
{% endfor %}
</div>
<script src='./assets/js/jquery-1.11.1.min.js'></script>
<script src='./assets/js/scrollspy.js'></script>
<script src='./assets/js/site.js'></script>
<script id="_fed_an_js_tag" type="text/javascript" src="./assets/js/federated-analytics.all.min.js?agency=GSA&sub-agency=OGP"></script>
</body>
</html>