logout.html.twig 485 B

12345678910111213141516
  1. {% embed 'partials/login.html.twig' with {title:'Grav Logout'} %}
  2. {% block head %}
  3. {{ parent() }}
  4. <meta http-equiv="refresh" content="3; URL={{ base_url_relative }}">
  5. {% endblock %}
  6. {% block page %}
  7. <section id="admin-login" class="default-glow-shadow">
  8. <h1>
  9. {{ title }}
  10. </h1>
  11. {{ admin.setMessage('PLUGIN_ADMIN.LOGGED_OUT'|t) }}
  12. {% include 'partials/messages.html.twig' %}
  13. </section>
  14. {% endblock %}
  15. {% endembed %}