18 lines
438 B
Twig
18 lines
438 B
Twig
{% extends "base.html.twig" %}
|
|
|
|
{% block body %}
|
|
{% if app.user %}
|
|
<div class="row">
|
|
<div class="col col-md6">
|
|
<h3>Chat #1</h3>
|
|
{{ render(path("app_publish_sample",{id:1})) }}
|
|
</div>
|
|
|
|
<div class="col col-md6">
|
|
<h3>Chat #2</h3>
|
|
{{ render(path("app_publish_sample",{id:2})) }}
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
{% endblock %}
|