Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ankedsgn/261a88a3eaa25dd0fd510848b5ead7f2 to your computer and use it in GitHub Desktop.
Save ankedsgn/261a88a3eaa25dd0fd510848b5ead7f2 to your computer and use it in GitHub Desktop.
<section class="download-module">
<ul>
{% for item in record.attachments %}
<li> <a href="{{ asset(item.filename, 'files') }}">
<svg class="icon icon-download">
<use xlink:href="#icon-download"></use>
</svg>
{{ item.title }}
<div class="meta">
{% set fileinfo = imageinfo(item.filename) %}
<span class="filesize">{{ fileinfo.getSizeFormatted() }}</span>
<span class="date-added">Added {{ fileinfo.getTimestamp()|date()|localedatetime("%d/%m/%y") }}</span>
</div>
</a></li>
{% endfor %}
</ul>
</section>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment