base.html 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <!DOCTYPE html>
  2. <html lang="ru">
  3. <head>
  4. <meta charset="UTF-8"/>
  5. <link rel="stylesheet" href="../../../../static/css/base.css"/>
  6. <link
  7. rel="stylesheet"
  8. href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"
  9. integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh"
  10. crossorigin="anonymous"
  11. />
  12. <link rel="icon" href="../../../static/images/logo_b.ico" type="image/x-icon"/>
  13. <title>{{title}}</title>
  14. </head>
  15. <body>
  16. <div class="alert alert-danger mess_block" role="alert">
  17. <h4 style="text-align:center;">Это деманстрационная версия сайта, пока что мы не рекомендуем сохранять здесь важные данные</h4>
  18. </div>
  19. <script
  20. src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.1/dist/js/bootstrap.bundle.min.js"
  21. integrity="sha384-u1OknCvxWvY5kfmNBILK2hRnQC3Pr17a+RTT6rIHI7NnikvbZlHgTPOOmMi466C8"
  22. crossorigin="anonymous"
  23. ></script>
  24. {% if current_user.is_authenticated %}
  25. <nav class="navbar">
  26. <div class="nav_panel">
  27. <a class="nav_chapter" href="/profile">
  28. <div class="nav_user">
  29. <div class="nav_user_name_div"><p class="nav_user_name nav_chapter_text">{{current_user.name}}</p></div>
  30. </div>
  31. </a>
  32. <a class="nav_chapter" href="/projects">
  33. <p class="nav_chapter_text">Проекты</p>
  34. </a>
  35. <a class="nav_chapter" href="/showcase">
  36. <p class="nav_chapter_text">Витрина</p>
  37. </a>
  38. </div>
  39. </nav>
  40. {% else %}
  41. <nav class="navbar" id="navbar">
  42. <div class="container-fluid">
  43. <a class="navbar-brand" href="/">
  44. <img src="../../../../static/images/logo_b.png" class="nav_logo"/>
  45. </a>
  46. <a class="auth_button" href="/login">Авторизация</a>
  47. </div>
  48. </nav>
  49. {% endif %}
  50. <!-- Begin page content -->
  51. <main role="main">{% block content %}{% endblock %}</main>
  52. <footer class="footer">
  53. <div class="footer_block">
  54. <a href="/#header_block"
  55. ><img class="footer_logo" src="../../../../static/images/logo_w.png"
  56. /></a>
  57. <strong class="footer_rights">© All rights reserved</strong>
  58. </div>
  59. </footer>
  60. </body>
  61. </html>