47 lines
No EOL
1.9 KiB
Twig
Executable file
47 lines
No EOL
1.9 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="circular icon edit green inverted link"></i>Bearbeiten</a>
|
|
</p>
|
|
|
|
<p class="startdate ">
|
|
<i class="circular icon calendar green inverted link" title="Wann?"
|
|
data-content="Wann?"></i>{{ entity.getFormatedDate() }}
|
|
</p>
|
|
|
|
{% if entity.location is not null %}
|
|
<p class="location">
|
|
<a href="{{ path('location_show', {'slug' : entity.location.slug }) }}"><i
|
|
class="circular icon map marker 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 link"></i>{{ tag.name }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endif %}
|
|
|
|
{% if entity.url|length > 0 %}
|
|
<p class="url">
|
|
<a href="{{ entity.url }}"><i class="circular icon globe green inverted link"></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> |