blog/templates/layout.html

35 lines
828 B
HTML
Raw Normal View History

2018-08-09 06:53:47 +00:00
{% import "macros/layout.html" as layout %}
<html>
<head>
2020-02-12 03:21:15 +00:00
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
2018-08-29 22:36:07 +00:00
<title>{% block title %}{% endblock %}</title>
2018-08-09 06:53:47 +00:00
<link rel="stylesheet" href="/main.css" />
</head>
<body>
<header>
{{ layout::navbar(config=config) }}
</header>
2020-04-01 05:19:59 +00:00
<div class="container" style="padding: 5px 40px;">
2018-08-09 06:53:47 +00:00
{% block content %}{% endblock %}
</div>
<div style="text-align: center; font-weight: 200; margin-bottom: 40px;">
2019-03-05 00:04:13 +00:00
<p style="margin: 0;">
2019-03-28 00:44:39 +00:00
<a href="/tags" class="colorlink">tags</a> &middot;
2019-03-05 00:04:13 +00:00
<a href="/pages" class="colorlink">all pages</a>
</p>
<p style="margin: 0;">
written by michael zhang.
2019-05-06 10:06:23 +00:00
<a href="https://git.iptq.io/michael/blog" class="colorlink" target="_blank">source</a>
2019-03-05 00:04:13 +00:00
</p>
2018-08-09 06:53:47 +00:00
</div>
</body>
</html>