--- title: News icon: newspaper-variant description: Catch up with the latest WiiLink news. ---
RSS

{% 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 %}