Uh oh!
There was an error while loading. Please reload this page.
forked from python3statement/python3statement.github.io
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
Latest commit
executable file
·66 lines (60 loc) · 2.39 KB
/
Copy pathindex.html
File metadata and controls
executable file
·66 lines (60 loc) · 2.39 KB
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
---
---
<!DOCTYPE html>
<htmldir="ltr" lang="en">
<head>
<metacharset="UTF-8" />
<metaname="viewport" content="width=device-width, initial-scale=1">
<title>{{ site.title }}</title>
<metaname="keywords" content="{{ site.keywords }}">
<metaname="description" content="{{ site.description }}">
<linkrel="stylesheet" href="combo.css">
<linkhref='https://fonts.googleapis.com/css?family=Raleway:400,300,700' rel='stylesheet' type='text/css'>
<linkrel="stylesheet" href="https://netdna.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
<linkrel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/vis/4.16.1/vis.min.css">
<scriptsrc="https://cdnjs.cloudflare.com/ajax/libs/vis/4.16.1/vis.min.js"></script>
{% if site.favicon %}<linkrel="shortcut icon" href="{{ site.favicon }}" type="image/x-icon">{% endif %}
{% if site.touch_icon %}<linkrel="apple-touch-icon" href="{{ site.touch_icon }}">{% endif %}
</head>
<body>
<divid="main">
<nav><ul>
{% for node in site.sections %}
{% capture id %}{{ node.id | remove:'/' | downcase }}{% endcapture %}
<liclass="p-{{id}}"><ahref="#{{id}}">{{node.title}}</a></li>
{% endfor %}
</ul></nav>
{% for page in site.sections %}
{% capture id %}{{ page.id | remove:'/' | downcase }}{% endcapture %}
<divid="{{id}}" class="section p-{{id}}">
{% if page.icon %}
<divclass="subtlecircle sectiondivider imaged">
<imgsrc="{{page.icon}}" alt="section icon" />
<h5class="icon-title">{{ page.title }}</h5>
</div>
{% elsif page.fa-icon %}
<divclass="subtlecircle sectiondivider faicon">
<spanclass="fa-stack">
<iclass="fa fa-circle fa-stack-2x"></i>
<iclass="fa fa-{{ page.fa-icon }} fa-stack-1x"></i>
</span>
<h5class="icon-title">{{ page.title }}</h5>
</div>
{% endif %}
<divclass="container {{ page.style }}">
{{ page.content }}
</div>
</div>
{% endfor %}
<divid="footer" class="section text-white">
<divclass="container">
{% capture foottext %} {% include footer.md %} {% endcapture %}
{{ foottext | markdownify }}
</div>
</div>
</div>
{% include analytics.html %}
</body>
<scriptsrc="//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<scriptsrc="site.js"></script>
</html>