Add missing html end tag for code example in section 'For loops' (#7199)

Merge pull request 7199
This commit is contained in:
Anny 2018-08-26 04:38:00 -07:00 committed by jekyllbot
parent 2913ab2891
commit 535637ba06
1 changed files with 2 additions and 1 deletions

View File

@ -316,7 +316,8 @@ We've only scratched the surface of what you can do with `for` loops in retrievi
<li><a href="{{ post.url }}">{{ post.title}}</a>
<span class="postDate">{{ post.date | date: "%b %-d, %Y" }}</span>
</li>
{% endfor %}{% endraw %}
{% endfor %}
</ul>{% endraw %}
```
This loop would get the latest three posts that have a category called `podcasts` in the front matter.