blow/templates/layout.html
Thomas Chartron 3cdc0b6387 update
2021-11-04 19:45:17 +01:00

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>