Skip to content
Snippets Groups Projects
Select Git revision
  • 241e4f20063d881b59ef1743f77ae14cf648b43c
  • main default
  • 35-cgu
  • 34-peertube-support
  • 27-add-autoplay-to-iframe
  • 33-bug-on-youtube-embed-urls
  • RC-Rekall-v1.1-fix_lpo
  • tuleap-140-go-back-to-my-capsules-page-when-i-m-on-capsule-preview-page
  • RC-Rekall-v1.2-fix10
  • RC-Rekall-v1.2-fix9
  • RC-Rekall-v1.2-fix8
  • RC-Rekall-v1.2-fix7
  • RC-Rekall-v1.2-fix6
  • RC-Rekall-v1.2-fix5
  • RC-Rekall-v1.2-fix4
  • RC-Rekall-v1.2-fix3
  • RC-Rekall-v1.2-fix2
  • RC-Rekall-v1.2-fix1
  • RC-Rekall-v1.1-fix-3
  • RC-Rekall-v1.1-fix-2
  • RC-Rekall-v1.1-fix-1
  • RC-Rekall-v1.1-delivered
  • preprod20220209-1535
23 results

layout.html.twig

Blame
  • layout.html.twig 1.20 KiB
    <!DOCTYPE html>
    <html>
      <head>
        <meta charset="UTF-8">
        <title>{% block title %}MemoRekall{% endblock %}</title>
    
        {% block stylesheets %}
          {{ encore_entry_link_tags('app') }}
        {% endblock %}
    
        {% block javascripts %}
          {{ encore_entry_script_tags('app') }}
        {% endblock %}
    
        <link rel="icon" type="image/x-icon" href="{{ asset('build/images/favicon.ico') }}" />
    
      </head>
    
      <body class="container">
        <div class="position-relative d-flex flex-row align-items-center justify-content-center mb-5">
            <a href="/my_capsules" class="align-self-center">
              <img id="header-memorekall-logo" class="memorekall-logo" src="{{ asset('build/images/MemoRekall.png') }}">
            </a>
    
            {% if is_granted("IS_AUTHENTICATED_REMEMBERED") %}
              <div id="user-block">
                <div id="user-block-nom">{{ app.user.firstName }} {{ app.user.lastName }}</div>
                <form>
                  <button class="btn btn-primary" formaction="/logout">
                    {{ 'general.log_out'|trans }}
                  </button>
                </form>
              </div>
            {% endif %}
        </div>
    
      </div>
    
      {%  block connexion %} {% endblock %}
      {% block body %}{% endblock %}
      </body>
    </html>