mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 23:52:03 +00:00
23 lines
757 B
HTML
23 lines
757 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" %}
|
|
{% if not config.extra.single_page %}
|
|
<script async src="https://www.googletagmanager.com/gtag/js?id=G-KF1LLRTQ5Q"></script>
|
|
<script>
|
|
window.dataLayer = window.dataLayer || [];
|
|
function gtag(){dataLayer.push(arguments);}
|
|
gtag('js', new Date());
|
|
gtag('config', 'G-KF1LLRTQ5Q');
|
|
</script>
|
|
{% endif %}
|
|
</head>
|
|
<body dir="{{ direction or 'ltr' }}" {{ extra_body_attrs }}>
|
|
{% block content %}{% endblock %}
|
|
{% include "templates/footer.html" %}
|
|
{% include "templates/common_js.html" %}
|
|
</body>
|
|
</html>
|