Improve news index in website

This commit is contained in:
Sebastian Zhorel 2020-01-02 14:33:18 +01:00
parent 82d66eb2d4
commit 2166cbb688
1 changed files with 9 additions and 7 deletions

View File

@ -5,10 +5,12 @@
path: /news/
name: News
---
<ul>
{% for post in site.posts %}
<li>
<a href="{{ post.url }}">{{ post.title }}</a>
</li>
{% endfor %}
</ul>
<div class="blog_more">
<ul>
{% for post in site.posts %}
<li>
<a href="{{ post.url }}">{{ post.title }}</a>
</li>
{% endfor %}
</ul>
</div>