forked from rust-gamedev/rust-gamedev.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (45 loc) · 2.34 KB
/
index.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
{% import "includes/post_list.html" as macros %}
<!DOCTYPE html>
<html lang="{{ lang }}">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
{% block seo %}
<title>{{ config.title | default(value="Minima") }}</title>
<meta property="og:title" content="{{ config.title | default(value="Minima") }}">
{% if config.description %}
<meta name="description" content="{{ config.description }}">
<meta property="og:description" content="{{ config.description }}">
{% endif %}
<meta property="og:url" content="{{ get_url(path='/' )}}">
<meta property="og:type" content="website">
<link rel="canonical" href="{{ get_url(path='/' )}}">
{% endblock seo %}
<meta property="og:image" content="{{ get_url(path='social-card.png') }}">
<meta property="og:image:width" content="200">
<meta property="og:image:height" content="200">
<meta property="og:site_name" content="{{ config.title | default(value="Minima") }}">
<link rel="stylesheet" href="{{ get_url(path="style.css") }}">
<link rel="apple-touch-icon" sizes="180x180" href="{{ get_url(path='apple-touch-icon.png') }}">
<link rel="icon" type="image/svg+xml" href="{{get_url(path="favicon.svg")}}">
<link rel="icon" type="image/png" sizes="32x32" href="{{ get_url(path="favicon-32x32.png") }}">
<link rel="icon" type="image/png" sizes="16x16" href="{{ get_url(path="favicon-16x16.png") }}">
<link rel="manifest" href="{{ get_url(path="site.webmanifest") }}">
{% if config.generate_rss %}
<link rel="alternate" type="application/rss+xml" title="RSS" href="{{ get_url(path="rss.xml") }}">
{% endif %}
{% if config.extra.google_analytics %}
{% include "includes/google-analytics.html" %}
{% endif-%}
</head>
<body>
{% include "includes/header.html" %}
<main class="page-content" aria-label="Content">
{% block content %}
{% include "includes/home.html" %}
{% endblock content %}
</main>
{% include "includes/footer.html" %}
</body>
</html>