1.2 KiB
1.2 KiB
| title | icon | description |
|---|---|---|
| News | newspaper-variant | Catch up with the latest WiiLink news. |
{% comment %} We only want to show the 3 most recent posts under news itself. {% endcomment %} {% for post in site.posts limit: 3 %}
{{ post.title }}
{% include news-post-index.html post=post %}
{{ post.content }} {% endfor %}
Older Posts
{{ site.oldnews }}
{% comment %} Posts beyond the 3 most recent will only be linked to. {% endcomment %} {% for post in site.posts offset: 3 %}
{{ post.title }}
{% include news-post-index.html post=post %}
{{ post.content | strip_html | truncatewords: 50 }} {% endfor %}