Merge pull request #765 from annygakh/patch-1

Update mismatched end tag for code example in section 'Loops'
This commit is contained in:
Rico Sta. Cruz 2018-08-26 11:06:22 +08:00 committed by GitHub
commit 3f2bb1b044
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -139,7 +139,7 @@ Markup
{% for post in site.posts %}
<a href="{{ post.url }}">
<h2>{{ post.title }}</h2>
<p>{{ post.date | date_to_string }}</h2>
<p>{{ post.date | date_to_string }}</p>
</a>
{% endfor %}
```