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 1.1KB

12345678910111213141516171819202122232425262728293031323334353637
  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>dlyan.net</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 btn" href="/">:: dlyan.net</a>
  14. {% if logged_in %}
  15. <div class="header__auth">
  16. <form class="header__form" action="/logout" method="POST">
  17. <a href="/posts/new" class="btn">
  18. new post
  19. </a>
  20. <input class="btn" type="submit" value="log out" />
  21. </form>
  22. </div>
  23. {% endif %}
  24. </header>
  25. <div class="messages">
  26. {% if flash_error %}
  27. <p class="message message--error">{{ flash_error }}</p>
  28. {% endif %} {% if flash_success %}
  29. <p class="message message--success">{{ flash_success }}</p>
  30. {% endif %}
  31. </div>
  32. {% block content %} {% endblock %}
  33. </div>
  34. <script src="/static/script.js"></script>
  35. </body>
  36. </html>