{% if content.getAssets() %}
<div class="row inner-full">
<div class="col-10 offset-1">
<h4 class="smaller text-primary border-bottom">{{ 'news.details.downloads_title'|trans }}</h4>
<ul class="linklist list-unstyled">
{% for asset in content.getAssets() %}
{% set title = asset.getMetadata('title') %}
{% if not title %}
{% set title = asset.getKey() %}
{% endif %}
<li><a class="lorch-icon lorch-icon-download" href="{{ asset.getFullPath() }}" target="_blank">{{ title }}</a></li>
{% endfor %}
</ul>
</div>
</div>
{% endif %}