ClickHouse/website/templates/base.html
Ivan Blinkov ebef7b9a85
[website] ld+json for the front page (#11077)
* [website] ld+json for the front page

* Update index.html

* Update index.html
2020-05-21 00:01:18 +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>