ClickHouse/website/templates/base.html

14 lines
278 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
{% include "templates/common_meta.html" %}
{% include "templates/common_css.html" %}
</head>
<body>
{% block content %}
{% endblock %}
{% include "templates/footer.html" %}
{% include "templates/common_js.html" %}
</body>
</html>