blob: 590d592c57f060025c5e7dddf1afd323c0ad0751 (
plain)
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
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
{% block title %}
<title>{{ config.title }}</title>
{% endblock %}
<link rel="shortcut icon" type="image/png" href="{{ config.extra.favicon }}">
<meta name="viewport" content="width=device-width,initial-scale=1">
<link id="stylesheet" rel="stylesheet" type="text/css" href="/dark.css">
<script type="text/javascript" src="/js/theme.js"></script>
</head>
<div class="header">
<div class="site_title">
<p><a href="/"><img src="{{ config.base_url }}{{ config.extra.icon }}" alt="{{ config.title }}"
width="{{ config.extra.iconsize }}" height=auto></a></p>
<p><a href="/"> {{ config.title }}</a></p>
</div>
<div class="menu">
<!-- <a href="/tags">tags</a>
--><a href="/categories">categories</a>
</div>
</div>
<body onload="getTheme()">
<section class="section">
<div class="container">
{% block content %} {% endblock %}
</div>
</section>
</body>
<div class="footer">
 © {{ config.extra.author }}
</div>
</html>
|