<!--
# @name: base.html
# @creation_date: 2022-09-07
# @license: The MIT License <https://opensource.org/licenses/MIT>
# @author: Simon Bowie <ad7588@coventry.ac.uk>
# @author: Joana Chicau
# @purpose: Basic layout for all pages
# @acknowledgements:
# https://www.digitalocean.com/community/tutorials/how-to-make-a-web-application-using-flask-in-python-3
# Bootstrap 5.1.3: https://getbootstrap.com/
# Flask-Moment: https://flask-moment.readthedocs.io/en/latest/
# Boostrap select: https://stackoverflow.com/questions/67942546/bootstrap-5-select-dropdown-with-the-multiple-attribute-collapsed
-->

<!DOCTYPE html>
<html>
<head>
  <title>Performing Patents Otherwise: Archival conversations with 320,000 clothing inventions</title>
  <meta charset="utf-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <!-- favicon -->
  <link rel="icon" href="{{ url_for('static',filename='images/cropped-favicon-32x32.jpg') }}" sizes="32x32" />
  <link rel="icon" href="{{ url_for('static',filename='images/cropped-favicon-192x192.jpg') }}" sizes="192x192" />
  <link rel="apple-touch-icon" href="{{ url_for('static',filename='images/cropped-favicon-180x180.jpg') }}" />
  <!-- Bootstrap CSS -->
  <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
  <link href="{{ url_for('static',filename='styles/custom.css') }}" rel="stylesheet">
  <!-- JavaScript -->
  <script src="https://code.jquery.com/jquery-3.6.0.js" integrity="sha256-H+K7U5CnXl1h5ywQfKtSj8PCmoN9aaq30gDh27Xc0jk=" crossorigin="anonymous"></script>
  <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>
  <script src="{{ url_for('static',filename='js/main.js') }}"></script>
  <!-- JavaScript for Chart.js -->
  <script src="https://cdn.jsdelivr.net/npm/chart.js@3.8.0/dist/chart.min.js"></script>

</head>

{% block body %}
<body class="d-flex flex-column min-vh-100" id="main">
{% endblock %}

  <main class="flex-shrink-0">
      <div class="container-fluid p-5 mb-5">
          {% block content %}
          {% endblock %}
      </div>
  </main>
  {% block footer %}
  {% endblock %}
</body>
</html>