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.

3 年之前
3 年之前
3 年之前
3 年之前
3 年之前
3 年之前
3 年之前
3 年之前
3 年之前
3 年之前
3 年之前
3 年之前
3 年之前
3 年之前
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  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. -->
  13. <!DOCTYPE html>
  14. <html>
  15. <head>
  16. {{ moment.include_moment() }}
  17. <meta charset="utf-8">
  18. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  19. <meta name="viewport" content="width=device-width, initial-scale=1">
  20. <title>COPIM online toolkit</title>
  21. <!-- Bootstrap CSS -->
  22. <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
  23. <link href="{{ url_for('static',filename='styles/custom.css') }}" rel="stylesheet">
  24. <!-- Google font -->
  25. <link href="https://fonts.googleapis.com/css?family=Lato:300,400,700&display=swap" rel='stylesheet' type='text/css'>
  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-dark sticky-top" style="background-color: #F68210;">
  31. <div class="container-fluid">
  32. <a class="navbar-brand" href="{{ url_for('main.index')}}">COPIM online toolkit</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.index') }}" class="nav-link">
  40. Home
  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('example.get_examples') }}" class="nav-link">
  50. Examples
  51. </a>
  52. </li>
  53. <li class="nav-item">
  54. <a href="{{ url_for('practice.get_practices') }}" class="nav-link">
  55. Practices
  56. </a>
  57. </li>
  58. {% if current_user.is_authenticated %}
  59. <li class="nav-item">
  60. <a href="{{ url_for('create.create_resource') }}" class="nav-link">
  61. Add resource
  62. </a>
  63. </li>
  64. {% endif %}
  65. {% if current_user.is_authenticated %}
  66. <li class="nav-item">
  67. <a href="{{ url_for('main.profile') }}" class="nav-link">
  68. Profile
  69. </a>
  70. </li>
  71. {% endif %}
  72. {% if not current_user.is_authenticated %}
  73. <li class="nav-item">
  74. <a href="{{ url_for('auth.login') }}" class="nav-link">
  75. Login
  76. </a>
  77. </li>
  78. <li class="nav-item">
  79. <a href="{{ url_for('auth.signup') }}" class="nav-link">
  80. Sign Up
  81. </a>
  82. </li>
  83. {% endif %}
  84. {% if current_user.is_authenticated %}
  85. <li class="nav-item">
  86. <a href="{{ url_for('auth.logout') }}" class="nav-link">
  87. Logout
  88. </a>
  89. </li>
  90. {% endif %}
  91. </ul>
  92. </div>
  93. </div>
  94. </nav>
  95. </header>
  96. <!-- Begin page content -->
  97. <main class="flex-shrink-0">
  98. <div class="container">
  99. {% with messages = get_flashed_messages() %}
  100. {% if messages %}
  101. <div class="alert alert-danger">
  102. {{ messages[0] }}
  103. </div>
  104. {% endif %}
  105. {% endwith %}
  106. {% block content %}
  107. {% endblock %}
  108. </div>
  109. </main>
  110. <!-- Sticky footer-->
  111. <footer class="footer py-3 mt-auto" style="background-color: #fae5c5;">
  112. <div class="container">
  113. <span class="text-muted">© {{ 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>
  114. </div>
  115. </footer>
  116. <!-- JavaScript -->
  117. <!-- jQuery first, then Popper JS, then Bootstrap JS -->
  118. <script src="https://code.jquery.com/jquery-3.6.0.js" integrity="sha256-H+K7U5CnXl1h5ywQfKtSj8PCmoN9aaq30gDh27Xc0jk=" crossorigin="anonymous"></script>
  119. <script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.10.2/dist/umd/popper.min.js" integrity="sha384-7+zCNj/IqJ95wo16oMtfsKbZ9ccEh31eOz1HGyDuCQ6wgnyJNSYdrPa03rtR1zdB" crossorigin="anonymous"></script>
  120. <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.min.js" integrity="sha384-QJHtvGhmr9XOIpI6YVutG+2QOK9T+ZnN4kzFN1RtK3zEFEIsxhlmWl5/YESvpZ13" crossorigin="anonymous"></script>
  121. <script>
  122. $("#resource_type").change(function() {
  123. var resource_type = $(this).val();
  124. $(".resource_type_input").hide("fast", function() {
  125. $("#resource_type_" + resource_type).show("slow");
  126. });
  127. });
  128. </script>
  129. </body>
  130. </html>