templates/app/partials/logo-small.html.twig line 1

Open in your IDE?
  1. {% set domain = app.request.getHost() %}
  2. <!-- Logo small -->
  3. <div class="auth-brand text-center text-lg-left">
  4. <a href="{{ path('login') }}">
  5. {% if domain in setrivodouHosts %}
  6. <span><img src="{{ asset('page-logo-ews.png') }}" alt="" height="100"></span>
  7. {% elseif domain in rewaterHosts %}
  8. <span><img src="{{ asset('page-logo-rewater.svg') }}" alt="" height="50"></span>
  9. {% else %}
  10. <span><img src="{{ asset('page-login-logo.png') }}" alt="" height="18"></span>
  11. {% endif %}
  12. </a>
  13. </div>