ClickHouse/website/templates/base.html
Ivan Blinkov ba3f8f303d
[website] move js around (#29152)
* [website] move js around

* Update base.js
2021-09-18 10:49:15 +03:00

14 lines
414 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 content %}{% endblock %}
{% include "templates/footer.html" %}
{% include "templates/common_js.html" %}
</body>
</html>