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
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.

34 lines
862B

  1. {% extends "base.html" %}
  2. {% block body %}
  3. <body id="random-img-page">
  4. {% endblock %}
  5. {% block content %}
  6. <div class="action">
  7. <button onClick="refresh(this)" type="button" value="Refresh" title="new iteration">↻</button>
  8. <button onclick="" title="add one">+</button>
  9. <button onclick="" title="remove">-</button>
  10. </div>
  11. <a href="{{ url_for('main.index') }}" class="h1 text-left contrast" style="color: var(--color-lightyellow) !important;"> ⇽ </a>
  12. <div class="row">
  13. <div class="col m-5">
  14. <p class="h1 text-center contrast">Layering of Images</p>
  15. </div>
  16. </div>
  17. <div class="container-fluid compare">
  18. {% for result in results %}
  19. <img class="img-fluid" src="data:image/jpg;base64,{{ result['image'] }}" alt="Drawing accompanying patent for {{ result['title'] }}" />
  20. {% endfor %}
  21. </div>
  22. {% endblock %}