-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathdefault_bck.html
127 lines (91 loc) · 4.53 KB
/
default_bck.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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<!doctype html>
<html lang="{{ site.lang | default: "en" }}">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<link rel="stylesheet" href="/assets/css/style.css">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="/assets/css/site_style.css">
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<div class="wrapper">
<header id="header">
<h2><a href="{{ site.github.url | default: "/index.html" }}">{{ site.label }}</a></h2>
<div style="">{{ site.description | default: site.github.project_tagline }}</div>
<div class="navboxleft">
<!-- ###################################################################### -->
<!-- navigation_categories from _config.yaml -->
<!-- ###################################################################### -->
{% for this_category in site.navigation_categories %}
{% assign cat_label = this_category[1] %}
{% assign cat_key = this_category[0] %}
<h4 class="navleft"><a href="/{{ this_category[0] }}.html">{{ cat_label }}</a></h4>
{% if page.category contains cat_key %}
<!-- All matching post -->
{% for post in site.posts %}
{% if post.category contains cat_key %}
<div class="header_sublink" >
<a href="{{ post.url }}">{{ post.title }}</a>
</div>
{% endif %}
{% endfor %}
{% endif %}
{% endfor %}
<!-- ###################################################################### -->
<!-- navigation_categories from _config.yaml -->
<!-- ###################################################################### -->
<!-- ###################################################################### -->
<!-- Static Links -->
<!-- ###################################################################### -->
<h4 class="navleft"><a href="https://github.com/{{ site.github_organisation }}/">{{ site.label }} Repositories</a></h4>
</div>
<div class="navboxleft">
<h4 class="navleft">Related Sites</h4>
{% for this_static in site.navigation_static_links %}
{% if this_static[1].label != site.label %}
<div class="header_sublink">
<a href="{{ this_static[1].url }}">{{ this_static[1].label }}</a></div>
{% endif %}
{% endfor %}
</div>
<!-- ###################################################################### -->
<!-- / Static Links -->
<!-- ###################################################################### -->
<!-- ###################################################################### -->
<!-- Github Edit -->
<!-- ###################################################################### -->
<div class="navboxleft">
<div class="header_sublink" style="margin-left: 0px; margin-top: 10px; color: #ccc; ">
<a href="{{site.github.repository_url}}/blob/master/{{page.path}}" style="text-decoration: none; color: #ccc;">Edit this page</a>
</div>
</div>
<!-- ###################################################################### -->
<!-- / Github Edit -->
<!-- ###################################################################### -->
</header>
<section>
{{ content }}
</section>
<footer>
<a href="{{ site.site_parent_link }}"><img style="margin-bottom: 25px; float: left;" src="{{ "/assets/img/site-logo.png" }}" /></a>
<div style="display: block; margin-left: auto; margin-right: auto; margin-bottom: -50px;" class="tiny">Theme by <a href="https://github.com/mbaudis">mbaudis</a> based on "minimal" by <a href="https://github.com/orderedlist">orderedlist</a>
</div>
</footer>
</div>
<!-- ###################################################################### -->
<script src="{{ '/assets/js/scale.fix.js' | relative_url }}"></script>
{% if site.google_analytics %}
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', '{{ site.google_analytics }}', 'auto');
ga('send', 'pageview');
</script>
{% endif %}
</body>
</html>