<div class="social flex-list" style="--flex-list-indent: 2rem;">
{% for icon in icons %}
{% if icon =='facebook' %}
<a class="flex-list__item" target="_blank" title="Facebook" href="https://www.facebook.com/sharer.php?u={{ app.request.uri }}"
rel="nofollow" onclick="javascript:window.open(this.href, '', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=500,width=700');return false;">
<svg width="{{ width }}" height="{{ height }}" viewBox="0 0 16 16">
<use xlink:href='#{{ icon }}'/>
</svg>
</a>
{% elseif icon == 'twitter' %}
<a class="flex-list__item" target="_blank" title="Twitter" href="https://twitter.com/share?url={{ app.request.uri }}" rel="nofollow"
onclick="javascript:window.open(this.href, '', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=400,width=700');return false;">
<svg width="{{ width }}" height="{{ height }}" viewBox="0 0 16 16">
<use xlink:href='#{{ icon }}'/>
</svg>
</a>
{% elseif icon == 'linkedin' %}
<a class="flex-list__item" target="_blank" title="Linkedin" href="https://www.linkedin.com/shareArticle?mini=true&url={{ app.request.uri }}"
rel="nofollow" onclick="javascript:window.open(this.href, '','menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=450,width=650');return false;">
<svg width="{{ width }}" height="{{ height }}" viewBox="0 0 16 16">
<use xlink:href='#{{ icon }}'/>
</svg>
</a>
{% elseif iconn == 'daily-motion' %}
<a class="flex-list__item" target="_blank" title="Facebook" href="https://www.facebook.com/sharer.php?u={{ app.request.uri }}"
rel="nofollow" onclick="javascript:window.open(this.href, '', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=500,width=700');return false;">
<svg width="{{ width }}" height="{{ height }}" viewBox="0 0 16 16">
<use xlink:href='#{{ icon }}'/>
</svg>
</a>
{% elseif icon == 'share' %}
<a class="flex-list__item" href="">
<svg width="{{ width }}" height="{{ height }}" viewBox="0 0 16 16">
<use xlink:href='#{{ icon }}'/>
</svg>
</a>
{% endif %}
{% endfor %}
</div>