A search interface for the Performing Patents Otherwise publication as part of the Politics of Patents case study (part of Copim WP6): this parses data from the archive of RTF files and provides additional data from the European Patent Office OPS API. https://patents.copim.ac.uk
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

51 lines
2.4KB

  1. <!--
  2. # @name: base.html
  3. # @creation_date: 2022-09-07
  4. # @license: The MIT License <https://opensource.org/licenses/MIT>
  5. # @author: Simon Bowie <ad7588@coventry.ac.uk>
  6. # @author: Joana Chicau
  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. <title>Performing Patents Otherwise: Archival conversations with 320,000 clothing inventions</title>
  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. <!-- favicon -->
  22. <link rel="icon" href="{{ url_for('static',filename='images/cropped-favicon-32x32.jpg') }}" sizes="32x32" />
  23. <link rel="icon" href="{{ url_for('static',filename='images/cropped-favicon-192x192.jpg') }}" sizes="192x192" />
  24. <link rel="apple-touch-icon" href="{{ url_for('static',filename='images/cropped-favicon-180x180.jpg') }}" />
  25. <!-- Bootstrap CSS -->
  26. <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
  27. <link href="{{ url_for('static',filename='styles/custom.css') }}" rel="stylesheet">
  28. <!-- JavaScript -->
  29. <script src="https://code.jquery.com/jquery-3.6.0.js" integrity="sha256-H+K7U5CnXl1h5ywQfKtSj8PCmoN9aaq30gDh27Xc0jk=" crossorigin="anonymous"></script>
  30. <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script>
  31. <script src="{{ url_for('static',filename='js/main.js') }}"></script>
  32. <!-- JavaScript for Chart.js -->
  33. <script src="https://cdn.jsdelivr.net/npm/chart.js@3.8.0/dist/chart.min.js"></script>
  34. </head>
  35. {% block body %}
  36. <body class="d-flex flex-column min-vh-100" id="main">
  37. {% endblock %}
  38. <main class="flex-shrink-0">
  39. <div class="container-fluid p-5 mb-5">
  40. {% block content %}
  41. {% endblock %}
  42. </div>
  43. </main>
  44. {% block footer %}
  45. {% endblock %}
  46. </body>
  47. </html>