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 символов.

43 lines
1.3KB

  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. <span class="info" style="display: none;">
  6. <span class="operations">↝ add a random title from dataset;</span>
  7. </span>
  8. <button id="notes-operations" onclick="hideShowInfo()">?</button>
  9. </div>
  10. <div id="rdn-abstracts">
  11. <div class="row">
  12. <div class="col m-5">
  13. <p class="h1 text-center">a Handful of Fragments</p>
  14. <span class="info mt-2 text-center" style="display: none;">
  15. <!-- The following total reading time is based on the calculation of approx. 43,647,513 words in all the documents divided by 200 as the average reading speed of 200 wpm -->
  16. <p class="operations">↪ a <span id="time"></span> minute read out of 218238 minutes reading time</p>
  17. </span>
  18. <a href="{{ url_for('main.index') }}" class="arrow-back h1 text-left" title="back to index"> ⇽ </a>
  19. </div>
  20. </div>
  21. <div id="alltext">
  22. {% for abstract in abstracts %}
  23. <p>
  24. {{ abstract['abstract'] }}
  25. </p>
  26. <span class="joint">&</span>
  27. {% endfor %}
  28. </div>
  29. </div>
  30. <script type="text/javascript">
  31. // code adapted from w3collective
  32. const text = document.getElementById("alltext").innerText;
  33. readingTime(text);
  34. </script>
  35. {% endblock %}