link_list.html 922 B

1234567891011121314151617181920212223242526272829
  1. {% load i18n %}
  2. {% if module.children %}
  3. {% if module.layout == "stacked" %}
  4. <ul>
  5. {% for link in module.children %}
  6. <li>
  7. <a href="{{ link.url }}">{% if link.external %}<span class="icon-open-external"></span> {% endif %}{{ link.title }}</a>
  8. </li>
  9. {% endfor %}
  10. </ul>
  11. {% elif module.layout == "inline" %}
  12. <div class="padding center">
  13. <ul class="inline">
  14. {% for link in module.children %}
  15. <li>
  16. <a href="{{ link.url }}" class="nowrap">{% if link.external %}<span class="icon-open-external"></span> {% endif %}{{ link.title }}</a>
  17. </li>
  18. {% endfor %}
  19. </ul>
  20. </div>
  21. {% endif %}
  22. {% else %}
  23. <ul>
  24. <li>
  25. {% trans "Nothing to show" %}
  26. </li>
  27. </ul>
  28. {% endif %}