KevaChat is distributed chat platform for open, uncensored and privacy respectable communication with permanent data storage in blockchain.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<title>{% block head_title_content %}{{ app.name }}{% endblock %}</title>
|
|
|
|
<link rel="stylesheet" type="text/css" href="{{ url('room_index') }}css/default.css?{{ app.version }}"/>
|
|
|
|
</head>
|
|
|
|
<body data-mode="{% if request.get('mode') %}stream{% else %}webapp{% endif %}">
|
|
|
|
{% block header_container %}
|
|
|
|
<header>
|
|
|
|
{% block header_content %}
|
|
|
|
<strong>
|
|
|
|
<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" fill="currentColor" viewBox="0 0 16 16">
|
|
|
|
<path d="M14 0a2 2 0 0 1 2 2v12.793a.5.5 0 0 1-.854.353l-2.853-2.853a1 1 0 0 0-.707-.293H2a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2z"/>
|
|
|
|
</svg>
|
|
|
|
{{ app.name }}
|
|
|
|
</strong>
|
|
|
|
<sup>
|
|
|
|
<a href="https://github.com/kevachat/webapp" target="_blank" title="Source">{{ app.version }}</a>
|
|
|
|
</sup>
|
|
|
|
{% block header_module_info %}
|
|
|
|
{{
|
|
|
|
render(
|
|
|
|
controller(
|
|
|
|
'App\\Controller\\ModuleController::info',
|
|
|
|
{
|
|
|
|
request : request
|
|
|
|
}
|
|
|
|
)
|
|
|
|
)
|
|
|
|
}}
|
|
|
|
{% endblock %}
|
|
|
|
{% block header_module_rooms %}
|
|
|
|
{{
|
|
|
|
render(
|
|
|
|
controller(
|
|
|
|
'App\\Controller\\ModuleController::rooms',
|
|
|
|
{
|
|
|
|
request: request
|
|
|
|
}
|
|
|
|
)
|
|
|
|
)
|
|
|
|
}}
|
|
|
|
{% endblock %}
|
|
|
|
{% endblock %}
|
|
|
|
</header>
|
|
|
|
{% endblock %}
|
|
|
|
{% block main_container %}
|
|
|
|
<main>
|
|
|
|
{% block main_content %}{% endblock %}
|
|
|
|
</main>
|
|
|
|
{% endblock %}
|
|
|
|
{% block footer_container %}
|
|
|
|
<footer>
|
|
|
|
{% block footer_content %}{% endblock %}
|
|
|
|
</footer>
|
|
|
|
{% endblock %}
|
|
|
|
</body>
|
|
|
|
</html>
|