Skip to content
This repository was archived by the owner on Jan 11, 2019. It is now read-only.

Commit d7be679

Browse files
authored
Merge pull request #173 from aldryn/feature/release
Bumped version to 4.1.0
2 parents fdcc5c3 + 286503e commit d7be679

7 files changed

+15
-73
lines changed

CHANGELOG.rst

+6
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@ Aldryn Boilerplate Bootstrap 3
33
##############################
44

55

6+
4.1.0
7+
=====
8+
- Removed standard templates ``fullwidth.html``, ``sidebar_left.html``,
9+
``sidebar_right.html`` and ``tpl_home.html`` and use ``base.html`` instead
10+
11+
612
4.0.9
713
=====
814
- Removed dead references to select2 images

boilerplate.json

+2-5
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,9 @@
11
{
22
"identifier": "bootstrap3",
33
"package-name": "aldryn-boilerplate-bootstrap3-libsass",
4-
"version": "4.0.9",
4+
"version": "4.1.0",
55
"templates": [
6-
["fullwidth.html", "full width"],
7-
["sidebar_left.html", "sidebar left"],
8-
["sidebar_right.html", "sidebar right"],
9-
["tpl_home.html", "home template"]
6+
["base.html", "base"],
107
],
118
"excluded": [
129
"docs",

templates/base.html

+7-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,13 @@ <h3 class="sr-only">{% trans "You are here" %}</h3>
7676
{% block messages %}
7777
{% include "includes/messages.html" %}
7878
{% endblock messages %}
79-
{% block content %}{% endblock %}
79+
{% block content %}
80+
{% with 960 as width %}
81+
<div class="container">
82+
{% placeholder "content" %}
83+
</div>
84+
{% endwith %}
85+
{% endblock %}
8086
{% endblock extend_base %}
8187
<hr class="sr-only" />
8288
{# end: content #}

templates/fullwidth.html

-10
This file was deleted.

templates/sidebar_left.html

-27
This file was deleted.

templates/sidebar_right.html

-27
This file was deleted.

templates/tpl_home.html

-3
This file was deleted.

0 commit comments

Comments
 (0)