Skip to content
Snippets Groups Projects
Commit fed5dfcf authored by David Hoese's avatar David Hoese
Browse files

Fixed default page menu templates and moved page title and banner to line up...

 Fixed default page menu templates and moved page title and banner to line up with other parts of the page.
parent 6aebbd04
No related branches found
No related tags found
No related merge requests found
......@@ -64,11 +64,12 @@ SEARCH_MODEL_CHOICES = ("pages.Page", "field_experiments.DailyStatus")
# menus a page should appear in. Note that if a menu template is used
# that doesn't appear in this setting, all pages will appear in it.
# PAGE_MENU_TEMPLATES = (
# (1, _("Top navigation bar"), "pages/menus/dropdown.html"),
# (2, _("Left-hand tree"), "pages/menus/tree.html"),
# (3, _("Footer"), "pages/menus/footer.html"),
# )
PAGE_MENU_TEMPLATES = (
(1, _("Top navigation bar"), "pages/menus/ssec_dropdown.html"),
(2, _("Left-hand tree"), "pages/menus/tree.html"),
(3, _("Footer"), "pages/menus/footer.html"),
)
PAGE_MENU_TEMPLATES_DEFAULT = (1,)
# A sequence of fields that will be injected into Mezzanine's (or any
# library's) models. Each item in the sequence is a four item sequence.
......
......@@ -73,9 +73,14 @@
<body id="{% block body_id %}body{% endblock %}">
<div id="banner" class="container text-center">
<div class="row">
<img src="{% static "img/sparc_banner.png" %}">
<div id="banner">
<div class="container">
<div class="row">
{# <div class="col-md-2"></div>#}
<div class="col-md-10">
<img src="{% static "img/sparc_banner.png" %}">
</div>
</div>
</div>
</div>
......@@ -99,7 +104,7 @@
</div>
</div>
</div>
<div class="container-fluid">
<div class="container">
<ul class="breadcrumb">
<li id="breadcrumb-menu-sparc">
<a href="{% url "home" %}">SPARC</a>
......@@ -126,7 +131,7 @@
{% endnevercache %}
<div class="row">
{# <div class="col-md-2"></div>#}
<div class="col-md-2"></div>
<div class="col-md-10">
<h1>{% block title %}{% endblock %}</h1>
</div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment