_includes/legacy-download-list.html (18 lines of code) (raw):

{% if include.entries != empty %} {% if include.title %} <h2>{{ include.title }}</h2> {% endif %} <ul> {% for entry in include.entries %} <li><a href="{{ entry[1] | prepend: site.baseurl }}" onclick="trackDownload( 'click', '{{ entry[1] | split: "/" | last }}' )" oncontextmenu="trackDownload( 'menu', '{{ entry[1] | split: "/" | last }}' )">{{ entry[0] }}</a></li> {% endfor %} </ul> {% endif %}