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.

abstracts.html 856B

2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
1234567891011121314151617181920212223242526272829303132333435
  1. {% extends "base.html" %}
  2. {% block content %}
  3. <div class="action">
  4. <button onClick="refresh(this)" type="button" value="Refresh" title="new iteration">↻</button>
  5. </div>
  6. <div id="rdn-abstracts">
  7. <div class="row">
  8. <div class="col m-5">
  9. <p class="h1 text-center">Reading Fragments</p>
  10. <p class="mt-2 text-center">a <span id="time"></span> minute read out of 6375081 minutes reading time</p>
  11. <a href="{{ url_for('main.index') }}" class="h1 text-left"> ⇽ </a>
  12. </div>
  13. </div>
  14. <div id="alltext">
  15. {% for abstract in abstracts %}
  16. <p>
  17. {{ abstract['abstract'] }}
  18. </p>
  19. <span class="joint">&</span>
  20. {% endfor %}
  21. </div>
  22. </div>
  23. <script type="text/javascript">
  24. // code adapted from w3collective
  25. const text = document.getElementById("alltext").innerText;
  26. readingTime(text);
  27. </script>
  28. {% endblock %}