You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
605 B
24 lines
605 B
{% extends 'partials/base.html' %}
|
|
{% block old_css %}
|
|
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<section class="mainContainer">
|
|
{% include 'partials/header.html' %}
|
|
<div class="container-fluid">
|
|
<div class="row">
|
|
<p class="welcomeMain">{{ main_settings.heading }}</p>
|
|
</div>
|
|
</div>
|
|
<div class="container-fluid">
|
|
Main page text will be here...
|
|
</div>
|
|
</section>
|
|
{% endblock %}
|
|
{% block js_block %}
|
|
<script src='{% static "js/bootstrap.min.js" %}'></script>
|
|
{% endblock %}
|
|
{% block old_js %}
|
|
|
|
{% endblock %} |