forked from home-assistant/analytics.home-assistant.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbase.html
More file actions
95 lines (91 loc) · 2.64 KB
/
base.html
File metadata and controls
95 lines (91 loc) · 2.64 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
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
---
title: ""
description: ""
navigation:
- name: Installations
path: /
matchPath: /index
- name: Statistics
path: /statistics
- name: Integrations
path: /integrations
- name: Add-ons
path: /add-ons
---
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>{% if title %}{{ title }} | {% endif %}Home Assistant Analytics</title>
<meta
property="og:title"
content="{% if title %}{{ title }} | {% endif %}Home Assistant Analytics"
/>
<meta property="og:site_name" content="Home Assistant Analytics" />
<meta property="og:url" content="https://analytics.home-assistant.io/" />
<meta property="og:type" content="website" />
<meta
property="og:description"
content="Summary of the collected Home Assistant usage statistics."
/>
<meta
property="og:image"
content="https://brands.home-assistant.io/analytics/icon.png"
/>
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@home_assistant" />
<meta name="twitter:title" content="Home Assistant Analytics" />
<meta
name="twitter:description"
content="Summary of the collected Home Assistant usage statistics."
/>
<meta
name="twitter:image"
content="https://brands.home-assistant.io/analytics/icon.png"
/>
<meta name="viewport" content="width=device-width" />
<link
rel="icon"
type="image/png"
href="https://brands.home-assistant.io/analytics/icon.png"
/>
<link href="/static/styles.css" rel="stylesheet" />
{{ extra_head_contents }}
</head>
<body>
<div class="container">
<header class="nav-bar">
<a href="/"><h1 class="nav-title">Home Assistant Analytics</h1></a>
<nav>
<ul>
{% for nav in navigation %}
<li>
<a
class="{% if page.filePathStem == nav.matchPath or page.filePathStem == nav.path %}active{% endif %}"
href="{{ nav.path }}"
>
{{ nav.name }}
</a>
</li>
{% endfor %}
</ul>
</nav>
</header>
<main>
{{ content }}
</main>
<footer class="footer">
<span>Home Assistant Analytics</span>
<span class="serperator">–</span>
<a
title="Documentation"
href="https://www.home-assistant.io/integrations/analytics"
target="_blank"
>
Learn more about how this data is gathered
</a>
</footer>
</div>
</body>
</html>