index.html 1.2 KB

1234567891011121314151617181920212223242526272829
  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. <span class="module" id="module-{{ module.title | slugify }}"
  9. draggable="true" ondragstart="drag(event)">
  10. <span id="module-title" title="{{ module.summary }}">
  11. {{ module.title }}</span>
  12. <a target="_blank" href="{{ module.url }}">
  13. <img title="{{ module.type }} (press for info)" draggable="false" class="module-logo"
  14. {% if module.type == "structure" %}
  15. src="{% link assets/tabler_icons/building.svg %}" {% endif %}
  16. {% if module.type == "process" %}
  17. src="{% link assets/tabler_icons/rotate.svg %}" {% endif %}
  18. {% if module.type == "decision" %}
  19. src="{% link assets/tabler_icons/thumb-up.svg %}" {% endif %}
  20. {% if module.type == "culture" %}
  21. src="{% link assets/tabler_icons/palette.svg %}" {% endif %}
  22. /></a>
  23. <a onclick="this.parentNode.remove()" class="delete-module"
  24. style="display:none">
  25. <img src="{% link assets/tabler_icons/x.svg %}" /></a>
  26. </span>
  27. {% endfor %}