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.

47 lines
1.1KB

  1. {% extends "base.html" %}
  2. {% block content %}
  3. <div class="row">
  4. <div class="col text-center">
  5. <p class="h1">Performing Patents Otherwise</p>
  6. <p class="h2">Archival conversations with 320,000 clothing inventions</p>
  7. </div>
  8. </div>
  9. <div class="row justify-content-center p-3">
  10. <div class="col-sm-6 text-center">
  11. <form action="/search" method="POST">
  12. <input type="text" name="search" placeholder="search for a patent record">
  13. <input type="submit" id="submit" value="search">
  14. </form>
  15. </div>
  16. </div>
  17. <div class="row p-3">
  18. <div class="col text-center">
  19. <a href="/random">show a random record</a>
  20. </div>
  21. <div class="col text-center">
  22. <a href="/random/two">compare two random records</a>
  23. </div>
  24. </div>
  25. <div class="row p-3">
  26. <div class="col text-center">
  27. <a href="/random/titles">ten random titles</a>
  28. </div>
  29. <div class="col text-center">
  30. <a href="/random/abstracts">ten random abstracts</a>
  31. </div>
  32. <div class="col text-center">
  33. <a href="/random/images">ten random images (takes a long time to load)</a>
  34. </div>
  35. </div>
  36. {% endblock %}