forked from uptane/deployment-considerations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
default.html
70 lines (61 loc) · 2.16 KB
/
default.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
<!DOCTYPE html>
<html lang="{{ site.lang | default: "en-US" }}">
<head>
<meta charset='utf-8'>
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<meta name="viewport" content="width=device-width,maximum-scale=2">
<meta name="description" content="{{ site.title | default: site.github.repository_name }} : {{ site.description | default: site.github.project_tagline }}">
<link rel="icon" href="favicon.ico" type="image/x-icon">
<link rel="stylesheet" type="text/css" media="screen" href="{{ '/assets/css/style.css?v=' | append: site.github.build_revision | relative_url }}">
{% comment %}
TODO: Consider installing and using jekyll-seo-tag plugin
https://github.com/jekyll/jekyll-seo-tag
{% seo %}
{% endcomment %}
</head>
<body>
<!-- HEADER -->
<div id="header_wrap" class="outer">
<header class="inner">
<a href="/">
<h1 id="project_title">
<img src="{{site.logo_url}}"/>
<!--<span>{{site.title}}</span>-->
</h1>
<h2 id="project_tagline">
{{site.description}}
</h2>
</a>
</header>
</div>
{% if site.data.navbar %}
<div id="navbar_wrap" class="outer">
<nav class="inner">
{% include navbar.html %}
</nav>
</div>
{% endif %}
<!-- MAIN CONTENT -->
<div id="main_content_wrap" class="outer">
<section id="{{page.css_id}}" class="content inner">
{{ content }}
</section>
</div>
<!-- FOOTER -->
<div id="footer_wrap" class="outer">
<footer class="inner">
{% include footer.html %}
</footer>
</div>
{% if site.google_analytics %}
<script type="text/javascript">
(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','//www.google-analytics.com/analytics.js','ga');
ga('create', '{{ site.google_analytics }}', 'auto');
ga('send', 'pageview');
</script>
{% endif %}
</body>
</html>