14 lines
423 B
Twig
14 lines
423 B
Twig
{% extends "base.html.twig" %}
|
|
|
|
{% block body %}
|
|
{% set image= "noimage.png" %}
|
|
{% if image %}
|
|
{% set image= pin.image %}
|
|
{% endif %}
|
|
<img id="pin_image_img" src="\{{appAlias}}\uploads\pin\{{ image }}" class="d-block m-auto" style="width:90px;margin-bottom:15px !important" >
|
|
|
|
{% if pin.subname %}<small>{{ pin.subname }}</small>{%endif%}<br><br>
|
|
{{pin.description|raw}}
|
|
{% endblock %}
|
|
|