Files
myapp-full/myapp/templates/skeleton.html
RemiZOffAlex 024d7fb10d Remove ckeditor
Remove tinymce
Begin migrate to mithril.js
2023-02-18 07:35:06 +03:00

24 lines
344 B
HTML

<!DOCTYPE html>
<html lang="ru">
{% include 'header.html' %}
<body>
<section id="app" class="container">
{% include '/public/navbar.html' %}
{% block content %}
{% endblock content %}
{% block breadcrumb %}
{% endblock %}
{% include 'footer.html' %}
</section>
<script type="text/javascript" src="/app.js"></script>
</body>
</html>