feda5d7d57
Signed-off-by: Gergely Polonkai <polesz@w00d5t0ck.info>
10 lines
442 B
Twig
10 lines
442 B
Twig
{% for news in recentNews %}
|
|
<div class="hir">
|
|
<p class="hir-cim">{{ news.title }}</p>
|
|
<p class="hir-szoveg">{{ news.text|raw }}</p>
|
|
{% if app.user %}
|
|
<p class="hir-szerzo">{{ news.createdBy|userdataspan }}</p>
|
|
{% endif %}
|
|
<p class="hir-datum">{{ news.createdAt|date('Y-m-d H:i') }}</p>
|
|
</div>
|
|
{% endfor %} |