-
Notifications
You must be signed in to change notification settings - Fork 23
/
page.html
83 lines (83 loc) · 3.64 KB
/
page.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 lang="en-us">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Learn how to customize your BigFix deployment.">
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
<link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Roboto:400,700,700italic,400italic'>
<script src="//code.jquery.com/jquery-1.12.0.min.js"></script>
<script src="//code.jquery.com/jquery-migrate-1.2.1.min.js"></script>
<link rel="stylesheet" href="/static/site.css">
<script src="/static/site.js"></script>
<title>{{title}} | BigFix Developer</title>
</head>
<body>
<div class="wrapper">
<header class="nav-header">
<div class="container">
<input type="checkbox" id="nav-checkbox" style="display:none;">
<div class="nav-bar">
<div class="nav-header-logo">
<a href="/">
<svg class="bigfix-logo" width="32" height="64" viewBox="0 0 256 256">
<defs>
<mask id="inner-b">
<circle fill="#fff" cx="128" cy="128" r="128"/>
<circle fill="#000" cx="128" cy="128" r="72"/>
<circle fill="#fff" cx="128" cy="128" r="32"/>
<rect fill="#000" x="56" y="0" width="40" height="128"/>
</mask>
</defs>
<rect fill="#fff" x="0" y="0" width="256" height="256" mask="url(#inner-b)"/>
</svg>
<span>BigFix <strong>Developer</strong></span>
</a>
</div>
<div class="nav-button mobile-visible"><label for="nav-checkbox"><i class="fa fa-bars" aria-hidden="true"></i></label></div>
</div>
<nav class="nav-header-links nav-{{section}}">
<ul>
{% for item in siteNav %}
<li class="nav {{item['folder']}}">
<input type="checkbox" id="nav-checkbox-{{item['folder']}}" style="display:none;">
<a href="{{item['href']}}" class="mobile-invisible">{{item['name']}}</a>
<label for="nav-checkbox-{{item['folder']}}" class="mobile-visible">{{item['name']}}</label>
{% if item['children'] %}
<ul style="max-height:{{item['children'].length * 57}}px;">
{% for subitem in item['children'] %}
{% if subitem['name'] != "Home" %}
<li><a href="{{subitem['href']}}">{{subitem['name']}}</a></li>
{% else %}
<li class="mobile-visible"><a href="{{subitem['href']}}">{{subitem['name']}}</a></li>
{% endif %}
{% endfor %}
</ul>
{% endif %}
</li>
{% endfor %}
</ul>
</nav>
</div>
</header>
<main class="main">
{% block content %}
{{content | safe}}
{% endblock %}
</main>
</div>
<div class="footer">
<div class="container">
<ul class="footer-items">
<li><a href="/legal/terms.html">Terms of use</a></li>
</ul>
</div>
</div>
<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', 'UA-85554430-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>