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

Commit f26a69f

Browse files
authored
Merge pull request #174 from aldryn/feature/inherit
Feature/inherit
2 parents 98f163f + ee7a6bf commit f26a69f

File tree

4 files changed

+10
-12
lines changed

4 files changed

+10
-12
lines changed

CHANGELOG.rst

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

55

6+
4.1.1
7+
=====
8+
9+
- Fixed an issue with ``404.html`` inheriting from ``fullwidth.html``
10+
- Removed ``fullwidth.html`` references from documentation
11+
12+
613
4.1.0
714
=====
815
- Removed standard templates ``fullwidth.html``, ``sidebar_left.html``,

boilerplate.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"identifier": "bootstrap3",
33
"package-name": "aldryn-boilerplate-bootstrap3-libsass",
4-
"version": "4.1.0",
4+
"version": "4.1.1",
55
"templates": [
66
["base.html", "base"]
77
],

docs/structure/templates.rst

+1-10
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,7 @@ Templates
1010

1111
From the top down the three layers are:
1212

13-
- *user-selectable page templates* (``fullwidth.html``, ``sidebar_left.html``
14-
and so on), which inherit from:
15-
- ``base.html``, which inherits from:
13+
- *user-selectable page templates* (``base.html``), which inherit from:
1614
- ``base_root.html``
1715

1816

@@ -93,13 +91,6 @@ which can be chosen within the CMS by the user.
9391

9492
.. image:: ../_static/toolbar-templates.png
9593

96-
The following templates are provided from the start:
97-
98-
- ``fullwidth.html`` uses the 100% span of the Bootstrap grid
99-
- ``sidebar_left.html`` creates a left sidebar with the content placed on the right
100-
- ``sidebar_right.html`` creates a right sidebar with the content placed on the left
101-
- ``tpl_home.html`` specific template for the landing page
102-
10394

10495
==========
10596
Page Types

templates/404.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{% extends "fullwidth.html" %}
1+
{% extends "base.html" %}
22
{% load i18n %}
33

44
{% block body_class %}tpl-404{% endblock %}

0 commit comments

Comments
 (0)