This repository has been archived by the owner on Mar 11, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.html
85 lines (74 loc) · 3.17 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html lang="{{ site.lang | default: " 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">
<meta property="og:site_name" content="SVT Open source"/>
<meta property="og:title" content="SVT Open source"/>
<meta property="og:url" content="https://www.svt.se/opensource/"/>
<meta property="og:type" content="website"/>
<meta property="og:image" content="https://www.svt.se/opensource/assets/img/svtlogo-white.png"/>
<meta property="og:description" content="Sveriges Television, The Swedish national public TV broadcaster, builds it services with mainly open source products. We also contribute to the Open Source community, by bug fixing or by releasing projects that we think could benefit others."/>
<meta name="Description" content="Sveriges Television, The Swedish national public TV broadcaster, builds it services with mainly open source products. We also contribute to the Open Source community, by bug fixing or by releasing projects that we think could benefit others"/>
<meta name="Author" content="SVT Open source"/>
<meta name="Robots" content="index, follow, noarchive"/>
<meta name="Googlebot" content="index, follow, noarchive"/>
<meta name="format-detection" content="telephone=no"/>
<meta name="theme-color" content="#410f5a"/>
<title>SVT Open source</title>
<link rel="stylesheet" href="{{"./assets/css/style.css?v=" | append: site.github.build_revision }}">
<!--[if lt IE 9]>
<script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js"></script>
<![endif]-->
</head>
<body>
<div class="wrapper">
<header class="svt-header">
<nav class="navigation" role="navigation">
{% if site.data.menu %}
<div class="menuToggle">
<input class="menuToggleCheckbox" type="checkbox" />
<div class="menu-icon">
<span class="menu-icon-line"></span>
<span class="menu-icon-line"></span>
<span class="menu-icon-line"></span>
<span class="menu-icon-line"></span>
</div>
<ul class="menu">
<li class="site-logo">
<a href="https://omoss.svt.se/about-svt.html">
<img src="./assets/img/svtlogo-white.png" alt="SVT Logotype" /></a>
</li>
{% for item in site.data.menu.menuItems %}
<li><a href="{{ item.url }}" alt="{{ item.title }}">{{ item.title }}</a></li>
{% endfor %}
</ul>
</div>
{% endif %}
</nav>
<div class="header-main">
<h1>
√{{ page.head | default: site.github.repository_name }}
</h1>
</div>
<!-- <p class="view">
<a href="https://github.com/svt">GitHub
<small>SVT</small>
</a>
</p>-->
</header>
<section class="svt-section">
{{ content }}
</section>
<footer class="svt-footer">
<a href="https://www.svt.se">
{% if site.logo %}
<img class="footer-logo" src="{{site.logo}}" alt="Logo" />
{% endif %}
</a>
<div class="footer-copyright">© Sveriges Television AB</div>
</footer>
</div>
</body>
</html>