ClickHouse/website/templates/base.html
2021-09-13 16:39:17 -06:00

17 lines
479 B
HTML

<!DOCTYPE html>
<html lang="{{ language or 'en'}}" {{ extra_html_attrs }}>
<head>
{% include "templates/common_meta.html" %}
{% block extra_meta %}{% endblock %}
{% include "templates/common_css.html" %}
</head>
<body dir="{{ direction or 'ltr' }}" {{ extra_body_attrs }}>
{% block nav %}{% endblock %}
<div class="page">
{% block content %}{% endblock %}
{% include "templates/footer.html" %}
{% include "templates/common_js.html" %}
</div>
</body>
</html>