{% func RecentChangesHTML(changes []string, n int) %}

Recent Changes

← Back

Subscribe via RSS, Atom or JSON feed.

{% comment %} Here I am, willing to add some accesibility using ARIA. Turns out, role="feed" is not supported in any screen reader as of September 2020. At least web search says so. Even JAWS doesn't support it! How come? I'll add the role anyway. -- bouncepaw {% endcomment %}
{% if len(changes) == 0 %}

Could not find any recent changes.

{% else %} {% for i, entry := range changes %} {% endfor %} {% endif %}
{% endfunc %}