-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathdefault.html
More file actions
39 lines (29 loc) · 1.42 KB
/
default.html
File metadata and controls
39 lines (29 loc) · 1.42 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width initial-scale=1" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="{{ site.baseurl }}/css/styles.css">
<title>{% if page.title %}{{ page.title | escape }}{% else %}{{ site.title }}{% endif %}</title>
<meta name="description" content="{{ site.description }}">
<link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: site.url }}">
<link rel="shortcut icon" type="image/x-icon" href="{{ site.baseurl }}/favicon.ico">
<link rel="apple-touch-icon" sizes="180x180" href="{{ site.baseurl }}/apple-touch-icon.png">
{% include analytics.html %}
</head>
<body class="page{% if page.slug %} template-{{ page.slug }}{% endif %}">
{% include header.html %}
<main class="page-container">
{{ content }}
</main>
{% include footer.html %}
<script src="{{ site.baseurl }}/js/scripts.js"></script>
{% if page.slug == 'addons-plugins' or page.slug == 'addons-themes' %}
<script src="{{ site.baseurl }}/js/GithubLinks.js"></script>
{% endif %}
</body>
</html>