Skip to content

Commit 83d3005

Browse files
committed
Minor fixes
1 parent a3daaad commit 83d3005

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

tr/css/README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -125,9 +125,9 @@ Dosyanız şu şekilde gözüküyor olmalı:
125125

126126
{% for post in posts %}
127127
<div>
128-
<p>yayınlanma tarihi: {{ post.published_date }}</p>
129-
<h1><a href="">{{ post.title }}</a></h1>
130-
<p>{{ post.text|linebreaks }}</p>
128+
<p>yayınlanma tarihi: {{ post.yayinlama_tarihi }}</p>
129+
<h1><a href="">{{ post.baslik }}</a></h1>
130+
<p>{{ post.yazi|linebreaks }}</p>
131131
</div>
132132
{% endfor %}
133133
</body>
@@ -191,9 +191,9 @@ Devam edelim ve HTML kodumuzun bir kısmına isim verelim. Başlığı içeren `
191191

192192
```html
193193
<div class="post">
194-
<p>yayınlanma tarihi: {{ post.published_date }}</p>
195-
<h1><a href="">{{ post.title }}</a></h1>
196-
<p>{{ post.text|linebreaks }}</p>
194+
<p>yayınlanma tarihi: {{ post.yayinlama_tarihi }}</p>
195+
<h1><a href="">{{ post.baslik }}</a></h1>
196+
<p>{{ post.yazi|linebreaks }}</p>
197197
</div>
198198
```
199199

@@ -254,9 +254,9 @@ Sonra da blog gönderilerimizi gösteren HTML kodunu sınıf bildirimleriyle sar
254254
```html
255255
{% for post in posts %}
256256
<div class="post">
257-
<p>yayınlanma tarihi: {{ post.published_date }}</p>
258-
<h1><a href="">{{ post.title }}</a></h1>
259-
<p>{{ post.text|linebreaks }}</p>
257+
<p>yayınlanma tarihi: {{ post.yayinlama_tarihi }}</p>
258+
<h1><a href="">{{ post.baslik }}</a></h1>
259+
<p>{{ post.yazi|linebreaks }}</p>
260260
</div>
261261
{% endfor %}
262262
```
@@ -270,10 +270,10 @@ bununla değiştirelim:
270270
{% for post in posts %}
271271
<div class="post">
272272
<div class="date">
273-
{{ post.published_date }}
273+
{{ post.yayinlama_tarihi }}
274274
</div>
275-
<h1><a href="">{{ post.title }}</a></h1>
276-
<p>{{ post.text|linebreaks }}</p>
275+
<h1><a href="">{{ post.baslik }}</a></h1>
276+
<p>{{ post.yazi|linebreaks }}</p>
277277
</div>
278278
{% endfor %}
279279
</div>

0 commit comments

Comments
 (0)