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.

27 lines
679 B

{% extends 'base.html.twig' %}
{% block title %}
Domovská stránka
{% endblock %}
{% block body %}
{{ parent() }}
<main>
<div id="indexDiv">
<h1>Interaktivní grafy</h1>
<section>
<iframe src={{ path('charts_display', {'id': "66465c073703bac5a30e6a43"} ) }}></iframe>
<p>
Vítejte v aplikaci pro tvorbu interaktivních grafů. Klikněte na tlačítko níže a vytvořte si svůj graf.
</p>
{% if app.user %}
<a href="{{ path('charts_create') }}" id="createChart">Vytvořit nový graf!</a>
{% else %}
<a href="{{ path('users_login') }}" id="createChart">Začít!</a>
{% endif %}
</section>
</div>
</main>
{% endblock %}

Powered by TurnKey Linux.