Skip to content

Commit 6f899d3

Browse files
committed
Reverted text case fix in html section
1 parent 572d1e7 commit 6f899d3

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

en/css/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ Your file should now look like this:
129129

130130
{% for post in posts %}
131131
<div>
132-
<p>Published: {{ post.published_date }}</p>
132+
<p>published: {{ post.published_date }}</p>
133133
<h2><a href="">{{ post.title }}</a></h2>
134134
<p>{{ post.text|linebreaksbr }}</p>
135135
</div>
@@ -197,7 +197,7 @@ And now add a class `post` to your `div` containing a blog post.
197197
{% filename %}blog/templates/blog/post_list.html{% endfilename %}
198198
```html
199199
<div class="post">
200-
<p>Published: {{ post.published_date }}</p>
200+
<p>published: {{ post.published_date }}</p>
201201
<h2><a href="">{{ post.title }}</a></h2>
202202
<p>{{ post.text|linebreaksbr }}</p>
203203
</div>
@@ -286,7 +286,7 @@ Then surround the HTML code which displays the posts with declarations of classe
286286
```html
287287
{% for post in posts %}
288288
<div class="post">
289-
<p>Published: {{ post.published_date }}</p>
289+
<p>published: {{ post.published_date }}</p>
290290
<h2><a href="">{{ post.title }}</a></h2>
291291
<p>{{ post.text|linebreaksbr }}</p>
292292
</div>

en/django_templates/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ It works! But we want the posts to be displayed like the static posts we created
5353

5454
{% for post in posts %}
5555
<div>
56-
<p>Published: {{ post.published_date }}</p>
56+
<p>published: {{ post.published_date }}</p>
5757
<h2><a href="">{{ post.title }}</a></h2>
5858
<p>{{ post.text|linebreaksbr }}</p>
5959
</div>

en/html/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,13 +127,13 @@ Here's an example of a full template, copy and paste it into `blog/templates/blo
127127
</div>
128128

129129
<div>
130-
<p>Published: 14.06.2020, 12:14</p>
130+
<p>published: 14.06.2014, 12:14</p>
131131
<h2><a href="">My first post</a></h2>
132132
<p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Donec id elit non mi porta gravida at eget metus. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus.</p>
133133
</div>
134134

135135
<div>
136-
<p>Published: 14.06.2020, 12:14</p>
136+
<p>published: 14.06.2014, 12:14</p>
137137
<h2><a href="">My second post</a></h2>
138138
<p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Donec id elit non mi porta gravida at eget metus. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut f.</p>
139139
</div>

0 commit comments

Comments
 (0)