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/ path: /news/
name: News name: News
--- ---
<ul> <div class="blog_more">
{% for post in site.posts %} <ul>
<li> {% for post in site.posts %}
<a href="{{ post.url }}">{{ post.title }}</a> <li>
</li> <a href="{{ post.url }}">{{ post.title }}</a>
{% endfor %} </li>
</ul> {% endfor %}
</ul>
</div>