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 703B

3 years ago
3 years ago
3 years ago
3 years ago
1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {% extends "base.html" %}
  2. {% block content %}
  3. <div class="">
  4. <div class="border-b-2 border-black">
  5. <div class="pl-44 text my-8 row-span-2 meta max-w-[65ch]">
  6. {{ text|safe }}
  7. </div>
  8. </div>
  9. {% for tool in tools %}
  10. {{ resource_with_related(tool, 'Tool', 'Used by') }}
  11. {% endfor %}
  12. {% for book in books %}
  13. {{ resource_with_related(book, 'Book', 'Made with') }}
  14. {% endfor %}
  15. {% for tool in tools2 %}
  16. {{ resource_with_related(tool, 'Tool', 'Used by') }}
  17. {% endfor %}
  18. {% for book in books2 %}
  19. {{ resource_with_related(book, 'Book', 'Made with') }}
  20. {% endfor %}
  21. </div>
  22. {% endblock %}