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.

layout.html 980B

12345678910111213141516171819202122232425262728293031
  1. {% import "components.html" as components %}
  2. <!DOCTYPE html>
  3. <html lang="en">
  4. <head>
  5. <meta charset="UTF-8" />
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  7. <title>bngl://ws/</title>
  8. <link rel="stylesheet" href="/static/style.css" />
  9. </head>
  10. <body>
  11. <div class="container">
  12. <header class="header">
  13. <a class="header__logo" href="/">bngl://ws/</a>
  14. {% if logged_in %}
  15. <form action="/logout" method="POST">
  16. <input class="btn" type="submit" value="Log out" />
  17. </form>
  18. {% endif %}
  19. </header>
  20. <div class="messages">
  21. {% if flash_error %}
  22. <p class="message message--error">{{ flash_error }}</p>
  23. {% endif %} {% if flash_success %}
  24. <p class="message message--success">{{ flash_success }}</p>
  25. {% endif %}
  26. </div>
  27. {% block content %} {% endblock %}
  28. </div>
  29. <script src="/static/script.js"></script>
  30. </body>
  31. </html>