42 lines
No EOL
1.8 KiB
Twig
Executable file
42 lines
No EOL
1.8 KiB
Twig
Executable file
<div class="ui column">
|
|
<div class="ui segment event box">
|
|
<h2 class="ui dividing header segment green inverted"><a href="{{ path('_show', { 'slug': entity.slug }) }}">{{ entity.summary }}</a>
|
|
</h2>
|
|
|
|
<p class="edit">
|
|
<a href="{{ path('_edit', {'slug' : entity.slug }) }}"><i class="ui icon edit circular green inverted"></i>Bearbeiten</a>
|
|
</p>
|
|
|
|
<p class="startdate ">
|
|
<i class="ui icon calendar circular green inverted link" title="Wann?" data-content="Wann?"></i>{{ entity.startdate.format('Y-m-d H:i') }}
|
|
</p>
|
|
|
|
{% if entity.location is not null %}
|
|
<p class="location">
|
|
<a href="{{ path('location_show', {'slug' : entity.location.slug }) }}"><i class="ui icon map marker circular green inverted link" title="Wo?" data-content="Wo?"></i>{{ entity.location.name }}</a>
|
|
</p>
|
|
{% endif %}
|
|
{% if entity.tags|length > 0 %}
|
|
<ul class="tags">
|
|
{% for tag in entity.tags %}
|
|
<li class="tag"><a href="{{ path('tag_show',{'slug' : tag.slug }) }}"><i class="circular icon tag green inverted"></i>{{ tag.name }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endif %}
|
|
|
|
{% if entity.url|length > 0 %}
|
|
<p class="url">
|
|
<a href="{{ entity.url }}"><i class="ui icon globe green circular inverted"></i>{{ entity.url }}</a>
|
|
</p>
|
|
{% endif %}
|
|
|
|
<div class="ui clearing divider"></div>
|
|
|
|
{% if truncate_summary|default(false) %}
|
|
<p>{{ entity.description|truncate(255)|markdown }}</p>
|
|
{% else %}
|
|
<p>{{ entity.description|markdown }}</p>
|
|
{% endif %}
|
|
|
|
</div>
|
|
</div> |