您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

54 行
2.4KB

  1. {% extends "base.html" %}
  2. {% block content %}
  3. <h1>
  4. ExPub Compendium
  5. </h1>
  6. <p>
  7. The Experimental Publishing Compendium is for authors, designers, publishers, institutions and technologist who challenge, push and redefine the shape, form and rationale of scholarly works. The compendium offers a catalogues of <a href="{{ url_for('tool.get_tools') }}">tools</a>, <a href="{{ url_for('practice.get_practices') }}">practices</a>, <a href="{{ url_for('publisher.get_publishers') }}">publishers</a>, and <a href="{{ url_for('book.get_books') }}">books</a> to inspire experimental scholarly works.
  8. </p>
  9. <h2>
  10. How to use the compendium
  11. </h2>
  12. <p>
  13. The compendium catalogues potential ingredients for the making of experimental publications.
  14. </p>
  15. <ul>
  16. <li>Under <a href="{{ url_for('tool.get_tools') }}">Tools</a> you’ll find mostly software that supports experimental publication from collective writing to the annotation and remix of published texts.</li>
  17. <li><a href="{{ url_for('practice.get_practices') }}">Practices</a> provide inspiration for experimental book making.</li>
  18. <li><a href="{{ url_for('book.get_books') }}">Books</a> and <a href="{{ url_for('publisher.get_publishers') }}">publishers</a> provides examples of experimental books and those who publish them.</li>
  19. </ul>
  20. <p>
  21. Each item is cross linked so that a practice will take you to relevant tools or examples and vice versa.
  22. </p>
  23. <p>
  24. The selection is tentative, reflecting the knowledge and biases of the contributors of current and previous versions. If you want to submit or edit anything in the catalogue please do so by doing XXthisXXX.
  25. </p>
  26. <hr>
  27. <p>
  28. Browse from this selection of random tools, search or explore books, tools, practices, and publishers.
  29. </p>
  30. <div class="row">
  31. {% for tool in tools %}
  32. <div class="col-md-4 col-sm-6 py-3">
  33. <div class="card text-dark bg-info mb-3">
  34. <div class="card-body">
  35. <a href="{{ url_for('tool.show_tool', tool_id=tool['id']) }}">
  36. <h3 class="card-title text-center text-dark">{{ tool['name'] }}</h3>
  37. </a>
  38. <p class="card-text">
  39. {{ tool['description']|truncate(100) }}
  40. </p>
  41. {% if current_user.is_authenticated %}
  42. <a href="{{ url_for('tool.edit_tool', tool_id=tool['id']) }}">
  43. <span class="badge bg-dark">Edit</span>
  44. </a>
  45. {% endif %}
  46. </div>
  47. </div>
  48. </div>
  49. {% endfor %}
  50. </div>
  51. {% endblock %}