blow/templates/layout.html

22 lines
561 B
HTML
Raw Normal View History

2021-11-03 19:41:31 +00:00
<!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>
2021-11-04 18:45:17 +00:00
{% block content %}
{% endblock content %}
2021-11-04 18:53:17 +00:00
{% if config.extra.zt.enable_search %}
2021-11-03 19:41:31 +00:00
<script defer src="/js/search.js"></script>
{% endif %}
</body>
</html>