index.html 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {% extends "base.html" %}
  2. {% block title %}
  3. Home
  4. {% endblock %}
  5. {% block content %}
  6. <!-- bread crumb -->
  7. <nav aria-label="breadcrumb">
  8. <ol class="breadcrumb">
  9. <li class="breadcrumb-item active" aria-current="page">Home</li>
  10. </ol>
  11. </nav>
  12. <!-- flash messages -->
  13. {% with messages = get_flashed_messages(with_categories=true) %}
  14. {% for category, msg in messages %}
  15. <div class="alert alert-{{ category }} alert-dismissible fade show" role="alert">
  16. {{ msg }}
  17. <button type="button" class="close" data-dismiss="alert" aria-label="Close">
  18. <span aria-hidden="true">&times;</span>
  19. </button>
  20. </div>
  21. {% endfor %}
  22. {% endwith %}
  23. <!-- item list -->
  24. <div class="container mt-5">
  25. <div class="row">
  26. <div class="list-group col-12">
  27. {% for category, item_list in items.items() %}
  28. <!-- header -->
  29. <p class="list-group-item active h4">{{ category|name_by_type }}</p>
  30. <!-- items -->
  31. {% for item in item_list %}
  32. <a class="list-group-item list-group-item-action h5" href="/{{ item }}">{{ item|name_by_type }}</a>
  33. {% endfor %}
  34. {% endfor %}
  35. </div>
  36. </div>
  37. </div>
  38. {% endblock %}