2020-06-18 20:31:03 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<meta name="description" content="{{ config.description }}">
|
|
|
|
<meta name="author" content="{{ config.extra.author.name }}">
|
|
|
|
<link href="https://fonts.googleapis.com/css?family=Fira+Mono|Fira+Sans|Merriweather" rel="stylesheet">
|
2021-05-13 20:20:47 +00:00
|
|
|
<link href="{{ get_url(path="site.css", cachebust=true) | safe }}" rel="stylesheet">
|
2020-06-18 20:31:03 +00:00
|
|
|
<title>{{ config.title }}</title>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<div class="content">
|
|
|
|
{% block content %}Hello{% endblock content %}
|
|
|
|
</div>
|
2020-06-18 20:29:25 +00:00
|
|
|
|
2020-07-29 18:44:09 +00:00
|
|
|
{% include "current_path.html" %}
|
|
|
|
|
2020-06-18 20:29:25 +00:00
|
|
|
{% block script %}
|
|
|
|
{% endblock script %}
|
2020-06-18 20:31:03 +00:00
|
|
|
</body>
|
|
|
|
</html>
|