ClickHouse/website/templates/base.html
2020-03-30 11:25:29 +03:00

13 lines
373 B
HTML

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