webapp/templates/default/room/index.html.twig

48 lines
1.5 KiB
Twig
Raw Normal View History

2023-12-05 02:15:41 +00:00
{% extends 'default/layout.html.twig' %}
2023-12-05 20:13:39 +00:00
{% block head_title_content %}{{ name }} - {{ 'KevaChat' | trans }}{% endblock %}
2023-12-05 02:15:41 +00:00
{% block main_content %}
{{
render(
controller(
'App\\Controller\\ModuleController::room',
{
request: request
}
)
)
}}
2023-12-05 15:14:07 +00:00
{% if feed %}
2023-12-05 03:48:25 +00:00
<ul>
2023-12-05 15:14:07 +00:00
{% for post in feed %}
2023-12-05 03:48:25 +00:00
<li>
2023-12-05 15:14:07 +00:00
<a name="{{ post.txid }}"></a>
2023-12-05 16:28:36 +00:00
{% if post.icon %}
<img src="{{ post.icon }}" alt="icon" />
{% else %}
<strong>
@{{ 'anonymous' | trans }}
</strong>
{% endif %}
2023-12-05 20:21:13 +00:00
<a href="#{{ post.txid }}" title="{{ 'time:' | trans }} {{ post.transaction.time }} / {{ 'confirmations:' | trans }} {{ post.transaction.confirmations }}">
2023-12-05 15:14:07 +00:00
{{ post.transaction.timestamp | format_ago }}
</a>
<p>
{{ post.value }}
</p>
2023-12-05 03:48:25 +00:00
</li>
{% endfor %}
</ul>
{% endif %}
2023-12-05 02:15:41 +00:00
{% endblock %}
{% block footer_content %}
{{
render(
controller(
'App\\Controller\\ModuleController::post',
{
request: request
}
)
)
}}
{% endblock %}