Add footer block to all pages by default
This commit is contained in:
parent
adbd550239
commit
b424c06602
@ -27,33 +27,6 @@ body { font-size: 16px; }
|
|||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
|
|
||||||
.footer {
|
|
||||||
background-color: #444;
|
|
||||||
color: #ddd;
|
|
||||||
padding-top: 1em;
|
|
||||||
margin-top: 5em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.linklist {
|
|
||||||
list-style-type: none;
|
|
||||||
text-align: right;
|
|
||||||
margin-left: 0;
|
|
||||||
padding-left: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.linklist a {
|
|
||||||
color: #ddd;
|
|
||||||
text-decoration: underline;
|
|
||||||
}
|
|
||||||
|
|
||||||
.linklist a:hover {
|
|
||||||
color: #bbb;
|
|
||||||
}
|
|
||||||
|
|
||||||
.linklist-item--spacer {
|
|
||||||
margin-top: 1em;
|
|
||||||
}
|
|
||||||
|
|
||||||
dt { font-weight: bold; }
|
dt { font-weight: bold; }
|
||||||
dd { margin-left: 2em; }
|
dd { margin-left: 2em; }
|
||||||
dd ul { padding-left: 0; margin-left: 0; }
|
dd ul { padding-left: 0; margin-left: 0; }
|
||||||
@ -544,20 +517,6 @@ dd ul { padding-left: 0; margin-left: 0; }
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<footer class="footer">
|
|
||||||
<div class="container-fluid">
|
|
||||||
<div class="row">
|
|
||||||
<div class="col-md-12">
|
|
||||||
<ul class="linklist">
|
|
||||||
<li><a href="{% url 'index' %}">Map of all case studies</a>
|
|
||||||
<li><a href="/about">About us</a>
|
|
||||||
<li class="linklist-item--spacer">© Ojuso 2018
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block scripts %}
|
{% block scripts %}
|
||||||
|
@ -42,6 +42,9 @@ html, body, #main {
|
|||||||
<div id="modals"></div>
|
<div id="modals"></div>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
|
{% block footer %}
|
||||||
|
{% endblock %}
|
||||||
|
|
||||||
{% block scripts %}
|
{% block scripts %}
|
||||||
{% leaflet_map "main" callback="main_app_init" creatediv=False %}
|
{% leaflet_map "main" callback="main_app_init" creatediv=False %}
|
||||||
{% leaflet_js %}
|
{% leaflet_js %}
|
||||||
|
@ -17,13 +17,42 @@
|
|||||||
|
|
||||||
{# Additional Stylesheets #}
|
{# Additional Stylesheets #}
|
||||||
{% block stylesheets %}
|
{% block stylesheets %}
|
||||||
<style>
|
<style>
|
||||||
.navbar-brand {padding: 5px 15px;}
|
.navbar-brand { padding: 5px 15px; }
|
||||||
.navbar-brand > img {height: 40px;}
|
.navbar-brand > img { height: 40px; }
|
||||||
.dropdown-menu>li>a.no-hover:hover, .dropdown-menu>li>a.no-hover:focus {
|
.dropdown-menu > li > a.no-hover:hover, .dropdown-menu > li > a.no-hover:focus {
|
||||||
background: red;
|
background: red;
|
||||||
}
|
}
|
||||||
</style>
|
|
||||||
|
.footer {
|
||||||
|
background-color: #444;
|
||||||
|
color: #ddd;
|
||||||
|
padding-top: 1em;
|
||||||
|
margin-top: 5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.linklist {
|
||||||
|
list-style-type: none;
|
||||||
|
text-align: right;
|
||||||
|
margin-left: 0;
|
||||||
|
padding-left: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.linklist a {
|
||||||
|
color: #ddd;
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
|
.linklist a:hover {
|
||||||
|
color: #bbb;
|
||||||
|
}
|
||||||
|
|
||||||
|
.linklist-item--spacer {
|
||||||
|
margin-top: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
</style>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
@ -73,17 +102,34 @@
|
|||||||
</nav>
|
</nav>
|
||||||
|
|
||||||
{% if messages %}
|
{% if messages %}
|
||||||
{% for message in messages %}
|
{% for message in messages %}
|
||||||
<div class="alert alert-{{ message.tags }} alert-dismissible" role="alert">
|
<div class="alert alert-{{ message.tags }} alert-dismissible" role="alert">
|
||||||
{{ message }}
|
{{ message }}
|
||||||
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
|
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
|
||||||
<span aria-hidden="true">×</span>
|
<span aria-hidden="true">×</span>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
|
{% block footer %}
|
||||||
|
<footer class="footer">
|
||||||
|
<div class="container-fluid">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
<ul class="linklist">
|
||||||
|
<li><a href="{% url 'index' %}">Map of all case studies</a>
|
||||||
|
<li><a href="/about">About us</a>
|
||||||
|
<li class="linklist-item--spacer">© Ojuso 2018
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
{% endblock %}
|
||||||
|
|
||||||
{# CDN Javascript #}
|
{# CDN Javascript #}
|
||||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.0.0/jquery.min.js" integrity="sha256-JmvOoLtYsmqlsWxa7mDSLMwa6dZ9rrIdtrrVYRnDRH0=" crossorigin="anonymous"></script>
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.0.0/jquery.min.js" integrity="sha256-JmvOoLtYsmqlsWxa7mDSLMwa6dZ9rrIdtrrVYRnDRH0=" crossorigin="anonymous"></script>
|
||||||
|
Loading…
Reference in New Issue
Block a user