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.1KB

3 years ago
1 year ago
1 year ago
3 years ago
1 year ago
1 year ago
1 year ago
1 year ago
3 years ago
3 years ago
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {% extends "base.html" %}
  2. {% block content %}
  3. <div class="">
  4. <div class="border-b-2 border-black grid grid-cols-[52rem,30rem] content-start">
  5. <div class="ml-[13rem] text my-8 meta max-w-[30rem]">
  6. {{ text|safe }}
  7. </div>
  8. <div class="h-full ">
  9. <div class="flex h-full gap-8 justify-start items-center ">
  10. <div class="text-right">Show<br>related</div>
  11. <label class="switch">
  12. <input type="checkbox">
  13. <span class="slider round"></span>
  14. </label>
  15. <div class="">Simpler<br>List</div>
  16. </div>
  17. </div>
  18. </div>
  19. {% for tool in tools %}
  20. {{ resource_with_related(tool, loop, false) }}
  21. {% endfor %}
  22. {% for book in books %}
  23. {{ resource_with_related(book, loop, false) }}
  24. {% endfor %}
  25. {% for tool in tools2 %}
  26. {{ resource_with_related(tool, loop, false) }}
  27. {% endfor %}
  28. {% for book in books2 %}
  29. {{ resource_with_related(book, loop, false) }}
  30. {% endfor %}
  31. </div>
  32. {% endblock %}