mirror of
https://github.com/tchartron/blow
synced 2024-11-24 05:13:08 +00:00
21 lines
548 B
HTML
21 lines
548 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<link href="https://unpkg.com/tailwindcss@^2/dist/tailwind.min.css" rel="stylesheet">
|
|
|
|
<title>
|
|
{% block title %}
|
|
{{ config.title }}
|
|
{% endblock title %}
|
|
</title>
|
|
</head>
|
|
<body>
|
|
{% block content %}
|
|
{% endblock content %}
|
|
{% if zt.enable_search %}
|
|
<script defer src="/js/search.js"></script>
|
|
{% endif %}
|
|
</body>
|
|
</html>
|