blog/templates/layout.html

27 lines
622 B
HTML
Raw Normal View History

2018-08-09 06:53:47 +00:00
{% import "macros/layout.html" as layout %}
<html>
<head>
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" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<header>
{{ layout::navbar(config=config) }}
</header>
<div class="container" style="padding: 5px 30px;">
{% block content %}{% endblock %}
</div>
<div style="text-align: center; font-weight: 200; margin-bottom: 40px;">
2019-02-01 10:22:11 +00:00
written by michael zhang.
2018-08-09 06:53:47 +00:00
<a href="https://git.mzhang.me/michael/blog" class="colorlink" target="_blank">source</a>
</div>
</body>
</html>