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.

index.html 1.3KB

3 jaren geleden
3 jaren geleden
3 jaren geleden
3 jaren geleden
3 jaren geleden
3 jaren geleden
3 jaren geleden
3 jaren geleden
3 jaren geleden
123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {% extends "base.html" %}
  2. {% block content %}
  3. <h1>
  4. Short intro title
  5. </h1>
  6. <p>
  7. Books bind people and practices together, holding relations, opening the world. Experimental books push what the book container can hold... <a href="">more</a>
  8. </p>
  9. <h1>
  10. Essay title
  11. </h1>
  12. <p>
  13. The Experimental Publishing Compendium weaves some some ingredients for the making of experimental books into a non-linear how-to guide... <a href="">more</a>
  14. </p>
  15. <hr>
  16. <p>
  17. Browse random ingredients, search or explore typology, books, tools, practices, sensitivities and publishers
  18. </p>
  19. <div class="row">
  20. {% for tool in tools %}
  21. <div class="col-md-4 col-sm-6 py-3">
  22. <div class="card text-dark bg-info mb-3">
  23. <div class="card-body">
  24. <a href="{{ url_for('tool.show_tool', tool_id=tool['id']) }}">
  25. <h3 class="card-title text-center text-dark">{{ tool['name'] }}</h3>
  26. </a>
  27. <p class="card-text">
  28. {{ tool['description']|truncate(100) }}
  29. </p>
  30. {% if current_user.is_authenticated %}
  31. <a href="{{ url_for('tool.edit_tool', tool_id=tool['id']) }}">
  32. <span class="badge bg-dark">Edit</span>
  33. </a>
  34. {% endif %}
  35. </div>
  36. </div>
  37. </div>
  38. {% endfor %}
  39. </div>
  40. {% endblock %}