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.

140 lines
6.0KB

  1. <!--
  2. # @name: base.html
  3. # @version: 0.1
  4. # @creation_date: 2021-10-20
  5. # @license: The MIT License <https://opensource.org/licenses/MIT>
  6. # @author: Simon Bowie <ad7588@coventry.ac.uk>
  7. # @purpose: Basic layout for all pages
  8. # @acknowledgements:
  9. # https://www.digitalocean.com/community/tutorials/how-to-make-a-web-application-using-flask-in-python-3
  10. # Bootstrap 5.1.3: https://getbootstrap.com/
  11. # Flask-Moment: https://flask-moment.readthedocs.io/en/latest/
  12. # Boostrap select: https://stackoverflow.com/questions/67942546/bootstrap-5-select-dropdown-with-the-multiple-attribute-collapsed
  13. -->
  14. <!DOCTYPE html>
  15. <html>
  16. <head>
  17. {{ moment.include_moment() }}
  18. <meta charset="utf-8">
  19. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  20. <meta name="viewport" content="width=device-width, initial-scale=1">
  21. <title>ExPub Compendium</title>
  22. <!-- Bootstrap CSS -->
  23. <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
  24. <link href="{{ url_for('static',filename='styles/custom.css') }}" rel="stylesheet">
  25. <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-select/1.14.0-beta2/css/bootstrap-select.min.css" integrity="sha512-mR/b5Y7FRsKqrYZou7uysnOdCIJib/7r5QeJMFvLNHNhtye3xJp1TdJVPLtetkukFn227nKpXD9OjUc09lx97Q==" crossorigin="anonymous" referrerpolicy="no-referrer" />
  26. </head>
  27. <body class="d-flex flex-column min-vh-100">
  28. <header>
  29. <!-- Fixed navbar -->
  30. <nav class="navbar navbar-expand-md navbar-light sticky-top">
  31. <div class="container-fluid">
  32. <a class="navbar-brand" href="{{ url_for('main.index')}}">ExPub Compendium</a>
  33. <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
  34. <span class="navbar-toggler-icon"></span>
  35. </button>
  36. <div class="collapse navbar-collapse" id="navbarSupportedContent">
  37. <ul class="navbar-nav">
  38. <li class="nav-item">
  39. <a href="{{ url_for('main.about') }}" class="nav-link">
  40. About
  41. </a>
  42. </li>
  43. <li class="nav-item">
  44. <a href="{{ url_for('tool.get_tools') }}" class="nav-link">
  45. Tools
  46. </a>
  47. </li>
  48. <li class="nav-item">
  49. <a href="{{ url_for('practice.get_practices') }}" class="nav-link">
  50. Practices
  51. </a>
  52. </li>
  53. <li class="nav-item">
  54. <a href="{{ url_for('book.get_books') }}" class="nav-link">
  55. Books
  56. </a>
  57. </li>
  58. <li class="nav-item">
  59. <a href="{{ url_for('publisher.get_publishers') }}" class="nav-link">
  60. Publishers
  61. </a>
  62. </li>
  63. {% if current_user.is_authenticated %}
  64. <li class="nav-item">
  65. <a href="{{ url_for('create.create_resource') }}" class="nav-link">
  66. Add resource
  67. </a>
  68. </li>
  69. {% endif %}
  70. {% if current_user.is_authenticated %}
  71. <li class="nav-item">
  72. <a href="{{ url_for('main.profile') }}" class="nav-link">
  73. Profile
  74. </a>
  75. </li>
  76. {% endif %}
  77. {% if not current_user.is_authenticated %}
  78. <li class="nav-item">
  79. <a href="{{ url_for('auth.login') }}" class="nav-link">
  80. Login
  81. </a>
  82. </li>
  83. <li class="nav-item">
  84. <a href="{{ url_for('auth.signup') }}" class="nav-link">
  85. Sign Up
  86. </a>
  87. </li>
  88. {% endif %}
  89. {% if current_user.is_authenticated %}
  90. <li class="nav-item">
  91. <a href="{{ url_for('auth.logout') }}" class="nav-link">
  92. Logout
  93. </a>
  94. </li>
  95. {% endif %}
  96. </ul>
  97. </div>
  98. </div>
  99. </nav>
  100. </header>
  101. <!-- Begin page content -->
  102. <main class="flex-shrink-0">
  103. <div class="layer-bg w-100">
  104. <img class="img-fluid w-100" src="{{ url_for('static',filename='images/dots-bg.png') }}" alt="bg-shape">
  105. </div>
  106. <div class="container">
  107. {% with messages = get_flashed_messages() %}
  108. {% if messages %}
  109. <div class="alert alert-danger">
  110. {{ messages[0] }}
  111. </div>
  112. {% endif %}
  113. {% endwith %}
  114. {% block content %}
  115. {% endblock %}
  116. </div>
  117. </main>
  118. <!-- Sticky footer-->
  119. <footer class="footer py-3 mt-auto" style="background-color: #dcddde;">
  120. <div class="container">
  121. <span class="text-muted">© 2022–{{ moment().format('YYYY') }} <a href="https://copim.ac.uk/">COPIM</a> and licensed under a <a href="https://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License (CC BY 4.0)</a>.</span>
  122. </div>
  123. </footer>
  124. <!-- JavaScript -->
  125. <!-- jQuery first, then Popper JS, then Bootstrap JS -->
  126. <script src="https://code.jquery.com/jquery-3.6.0.js" integrity="sha256-H+K7U5CnXl1h5ywQfKtSj8PCmoN9aaq30gDh27Xc0jk=" crossorigin="anonymous"></script>
  127. <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
  128. <script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-select/1.14.0-beta2/js/bootstrap-select.min.js" integrity="sha512-FHZVRMUW9FsXobt+ONiix6Z0tIkxvQfxtCSirkKc5Sb4TKHmqq1dZa8DphF0XqKb3ldLu/wgMa8mT6uXiLlRlw==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
  129. <script src="{{ url_for('static',filename='js/main.js') }}"></script>
  130. </body>
  131. </html>