mirror of
https://github.com/Hopiu/djLint.git
synced 2026-04-27 16:34:45 +00:00
17 lines
479 B
HTML
17 lines
479 B
HTML
|
|
{% load cms_tags cms_js_tags i18n sekizai_tags %}
|
||
|
|
<!DOCTYPE html>
|
||
|
|
<html class="cms-overflow">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8">
|
||
|
|
<title>{{ object.get_page_title }}</title>
|
||
|
|
{% render_block "css" %}
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
{% cms_toolbar %}
|
||
|
|
{% render_block "js" %}
|
||
|
|
{% language cms_toolbar.toolbar_language %}
|
||
|
|
{% render_cms_structure_js cms_toolbar.structure_renderer object %}
|
||
|
|
{% endlanguage %}
|
||
|
|
</body>
|
||
|
|
</html>
|