index.html 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. ---
  2. layout: page
  3. title: Modules
  4. url: /modules/
  5. ---
  6. {% assign modules_array = site.modules | sort: "type" | reverse %}
  7. {% for module in modules_array %}
  8. {% if module.layout == "module" %}
  9. <span class="module" id="module-{{ module.title | slugify }}"
  10. draggable="true" ondragstart="drag(event)">
  11. <span id="module-title" title="{{ module.summary }}">
  12. {{ module.title }}</span>
  13. <a target="_blank" href="{{ module.url }}">
  14. <img title="{{ module.type }} (press for info)" draggable="false" class="module-logo"
  15. {% if module.type == "structure" %}
  16. src="{% link assets/tabler_icons/building.svg %}" {% endif %}
  17. {% if module.type == "process" %}
  18. src="{% link assets/tabler_icons/rotate.svg %}" {% endif %}
  19. {% if module.type == "decision" %}
  20. src="{% link assets/tabler_icons/thumb-up.svg %}" {% endif %}
  21. {% if module.type == "culture" %}
  22. src="{% link assets/tabler_icons/palette.svg %}" {% endif %}
  23. /></a>
  24. <a onclick="this.parentNode.remove()" class="delete-module"
  25. style="display:none">
  26. <img src="{% link assets/tabler_icons/x.svg %}" /></a>
  27. </span>
  28. {% endif %}
  29. {% endfor %}