forked from carpentries/glosario
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage.html
46 lines (46 loc) · 1.46 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
<!DOCTYPE html>
{% assign language = page.permalink | replace: '/', '' | default: 'en' %}
<html xmlns="http://www.w3.org/1999/xhtml" lang="{{language}}">
<head>
<title>{{site.title}}</title>
<link href="{{ '/static/site.css' | relative_url }}" rel="stylesheet" type="text/css">
<link rel="stylesheet" type="text/css" href="{{ '/assets/css/glossary.css' | relative_url }}" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
{% include matomo.html %}
</head>
<body>
<main>
{% include title.html %}
<div id="content-wrapper">
<div class="inner clearfix">
<section id="main-content-home">
{{content}}
</section>
<div class="sticky-home">
{% for lang in site.languages %}
<font color="white" size="5px" face="arial">
<a class="lang_links"
href="#{{lang.name}}">{{lang.name}}</>
</a>
<br>
</font>
{% endfor %}
</div>
</div>
</div>
</main>
<footer>
<p>
<a href="{{'/' | relative_url}}">Home</a>
-
<a href="{{'/license/' | relative_url}}">License</a>
-
<a href="{{'/conduct/' | relative_url}}">Code of Conduct</a>
-
<a href="{{ site.repository_url }}">GitHub</a>
-
<a href="https://www.netlify.com">This site is powered by Netlify</a>
</p>
</footer>
</body>
</html>