Skip to content

Commit 970113a

Browse files
committed
fix typos
1 parent 0809583 commit 970113a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ Here is the template hierarchy for the edit and preview endpoints::
142142
└── djangocms_alias/alias_content_preview.html {% block alias_content %}
143143

144144
Use Django's template override mechanism to customize these templates as needed. Say, if your base template has
145-
a different name and the content goes into a block called `main_content`, you would create a template at
145+
a different name and the content goes into a block called ``main_content``, you would create a template at
146146
`templates/djangocms_alias/base.html` with the following content::
147147
{% extends "mybase.html" %}
148148
{% load i18n %}
@@ -152,12 +152,12 @@ a different name and the content goes into a block called `main_content`, you wo
152152
{% block breadcrumb %}{% endblock %}
153153
{% block footer %}{% endblock %}
154154

155-
{% block main %}
155+
{% block main_content %}
156156
<div class="aliases my-additional-class">
157157
{% block aliases_content %}
158158
{% endblock aliases_content %}
159159
</div>
160-
{% endblock main %}
160+
{% endblock main_content %}
161161

162162

163163

0 commit comments

Comments
 (0)