templates/index/index.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}Startseite{% endblock %}
  3. {% block body %}
  4.     <div class="container">
  5.         <div class="mod_article two-columns large-spacer first last block">
  6.             <div class="ce_text box pseudo-box first block">
  7.                 <h2>Willkommen</h2>
  8.                 <p>{{ showBlock('HOMEPAGE_LOGIN') }}</p>
  9.                 <p><a href="{{ path('app_login') }}">Login</a></p>
  10.             </div>
  11.             {% if contestOpen() %}
  12.                 <div class="ce_text box bg-box last block">
  13.                     <h2>Als Kommune registrieren</h2>
  14.                     <p>{{ showBlock('HOMEPAGE_REGISTRATION') }}</p>
  15.                     <p><a href="{{ path('app_register') }}">Registrierung als Kommune</a></p>
  16.                 </div>
  17.             {% else %}
  18.                 <div class="ce_text box bg-box last block">
  19.                     <h2>Als Kommune registrieren</h2>
  20.                     <p>{{ showBlock('HOMEPAGE_REGISTRATION_CLOSED') }}</p>
  21.                 </div>
  22.             {% endif %}
  23.         </div>
  24.     </div>
  25. {% endblock %}