2020-03-13 19:35:03 +00:00
|
|
|
<!DOCTYPE html>
|
2020-03-30 08:25:29 +00:00
|
|
|
<html lang="{{ language or 'en'}}" {{ extra_html_attrs }}>
|
2020-03-13 19:35:03 +00:00
|
|
|
<head>
|
|
|
|
{% include "templates/common_meta.html" %}
|
2020-05-20 21:01:18 +00:00
|
|
|
{% block extra_meta %}{% endblock %}
|
2020-03-13 19:35:03 +00:00
|
|
|
{% include "templates/common_css.html" %}
|
|
|
|
</head>
|
2020-03-30 08:25:29 +00:00
|
|
|
<body dir="{{ direction or 'ltr' }}" {{ extra_body_attrs }}>
|
|
|
|
{% block content %}{% endblock %}
|
2020-03-13 19:35:03 +00:00
|
|
|
{% include "templates/footer.html" %}
|
|
|
|
{% include "templates/common_js.html" %}
|
|
|
|
</body>
|
|
|
|
</html>
|