This repository has been archived by the owner on Jan 30, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
92 lines (84 loc) · 3.03 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
89
90
91
92
---
---
<!DOCTYPE html>
<html lang="en">
<head>
<title>Process Code — from the Foundation for Public Code</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="icon" href="https://brand.publiccode.net/logo/mark-128w128h.png">
<link href='{{site.baseurl}}/assets/css/styles.css' rel='stylesheet' />
</head>
<body>
<nav>
<div id="navigation_bar">
<div class="outer_container">
<div class="inner_container">
<a href="#introduction"><h3>Process Code</h3></a>
<ul class="nav">
{% for phase in site.phases %}
<li class="phase_square"><a href="#phase{{ phase.phase_number }}" title="View Phase {{ phase.phase_number }}: {{ phase.title }}">{{ phase.phase_number }}</a></li>
{% endfor %}
</ul>
<div id="menu_icon">
<a href="#phases_index_anchor" title="Return to Index"></a>
</div>
</div>
</div>
</div>
</nav>
<div id="introduction">
<div class="outer_container">
<div class="inner_container">
<a id="logo" href="https://publiccode.net" target="_blank" title="Link to the Foundation for Public Code"><img src='https://brand.publiccode.net/logo/mark.svg' alt="Logo of the Foundation for Public Code" width="150px"></a>
<header>
{% capture header %}{% include header.md %}{% endcapture %}
{{ header | markdownify }}
</header>
{% capture introduction %}{% include introduction.md %}{% endcapture %}
{{ introduction | markdownify }}
<div class="button">
<a href="#phases_index_anchor" title="View the Phases">See the phases</a>
</div>
<div class="button">
<a href="https://github.com/publiccodenet/process-code#readme" title="Visit Github to Improve This Content">Help improve this content</a>
</div>
</div>
</div>
</div>
<nav>
<div id="phases_index">
<div class="outer_container">
<div class="inner_container">
<a class="anchor_offset" id="phases_index_anchor"></a>
<h2>Process Code</h2>
<div class="columns">
<ol>
{% for phase in site.phases %}
<li><a href="#phase{{ phase.phase_number }}" title="View Phase {{ phase.phase_number }}">{{ phase.title }}</a></li>
{% endfor %}
</ol>
</div>
<div class="button">
<a href="#phase1" title="View the In Detail">In detail</a>
</div>
</div>
</div>
</div>
</nav>
<div id="phases" class="outer_container">
{% for phase in site.phases %}
<div class="inner_container">
<a class="anchor_offset" id="phase{{ phase.phase_number }}"></a>
<h6>PHASE {{ phase.phase_number }}</h6>
<h2 class="disphase">{{ phase.title }}</h2>
{{ phase.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>
</body>
</html>