nineskeletor/templates/Pagewidget/viewlink.html.twig

24 lines
949 B
Twig

{% set widgetname="link" %}
{% extends 'Pagewidget/widget.twig' %}
{% block widgetbody %}
{% set url=url|replace({'#login#': username}) %}
{% if target == 'frame' %}
<a class="item-link" onClick="showItemframe(link{{ entity.id }}','{{ url }}')">
{% else %}
<a class="item-link" href="{{ url }}" target="{{ target }}">
{% endif %}
{% if entity.icon %}
<img src="{{ path('app_minio_image',{file:entity.icon.label}) }}" style="max-width: 90%; width:128px; height: auto; display: block; margin: auto; padding-top: 10px;" />
{% else %}
<img src=""{{ path('app_minio_image',{file:"icon/icon_pin.png"}) }}" style="max-width: 90%; width:128px; height: auto; display: block; margin: auto; padding-top: 10px;" />
{% endif %}
<div class="text-center mt-3 pb-1" style="font-size: 22px; font-family: var(--fonttitle); {{colorbodyfont}} !important">{{ entity.name }}</div>
</a>
{% endblock %}