mirror of
https://github.com/mediacms-io/mediacms.git
synced 2025-11-18 21:09:42 -05:00
MediaCMS frontend, initial commit
This commit is contained in:
22
templates/base.html
Normal file
22
templates/base.html
Normal file
@@ -0,0 +1,22 @@
|
||||
{% extends "root.html" %}
|
||||
{% load static %}
|
||||
|
||||
{% block beforecontent %}
|
||||
{% include "components/header.html" %}
|
||||
{% include "components/sidebar.html" %}
|
||||
{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<div class="page-main">
|
||||
<div class="page-main-inner">
|
||||
{% block innercontent %}{% endblock innercontent %}
|
||||
</div>
|
||||
<div class="page-sidebar-content-overlay"></div>
|
||||
</div>
|
||||
{% endblock %}
|
||||
|
||||
{% block aftercontent %}
|
||||
{% include "components/footer.html" %}
|
||||
{% endblock %}
|
||||
|
||||
{% block bottomimports %}<script src="{% static "js/base.js" %}"></script>{% endblock bottomimports %}
|
||||
Reference in New Issue
Block a user