-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlayout.html
71 lines (65 loc) · 2.49 KB
/
layout.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
{# layout.html --- Base template for all other templates -*- Mode: Jinja2; -*-
The blocks available in this file are:
* title: What will show within the HTML <title> tag.
* description: What will show within the HTML <meta> description tag.
* nav: Navigation bar with Links, a default is provided
* body: Main content which starts empty
* footer: Bottom links, default is provided
#}
<!doctype html>
<html lang="en-us">
<head>
<meta charset="utf-8">
<title>klovanych.org — {% block title %} {% if post is defined %}{{ post.title }} {% else %} Home {% endif %} {% endblock %}</title>
<meta name="description" content="{% block description %}{% endblock %}">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="/static/css/main.css">
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css">
<link rel="icon" type="image/png" href="/static/img/goat.png">
<link rel="alternate" type="application/rss+xml" href="rss.xml">
</head>
<body>
{% block nav %}
<div class="social">
<div class="container">
<ul class="badges">
<li>
<a href="mailto:[email protected]" alt="Email">
<span class="fa fa-envelope-o"></span>Email
</a>
</li>
<li>
<a href="https://codeberg.org/klovanych" target="_blank" alt="Codeberg">
<span class="fa fa-code"></span>Codeberg
</a>
</li>
<li>
<a href="rss.xml" alt="RSS">
<span class="fa fa-rss"></span>RSS
</a>
</li>
</ul>
<a href="/">
<img class="avatar" type="image/svg+xml" src="/static/img/the-goat.png" alt="avatar" />
</a>
</div>
</div>
{% endblock %}
<div class="post">
<div class="container">
{% block body %}{% endblock %}
</div>
</div>
<div class="footer">
{% block footer %}
<div class="bg">
<div class="container">
© <a href="https://klovanych.org/about.html">Nazar Klovanych</a> — All written content on this
website reflects my personal opinion and it's available
under <a href="https://creativecommons.org/licenses/by/4.0/" target="_blank">CC BY 4.0</a>
</div>
</div>
{% endblock %}
</div>
</body>
</html>