Created
June 14, 2017 15:18
-
-
Save ankedsgn/261a88a3eaa25dd0fd510848b5ead7f2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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