123456789101112131415161718192021222324252627282930313233343536373839 |
- ---
- layout: page
- title: Modules
- permalink: /modules/
- ---
- <p>
- These are the present modules currently available for authoring a
- Rule. Press the icon next to a module's name for details about
- it. Not all entries are
- complete. Please <a href="mailto:medlab@colorado.edu">write to
- us</a> with suggestions for additional modules or improvements to
- existing ones.
- </p>
- {% assign modules_array = site.modules | sort: "type" | reverse %}
- {% for module in modules_array %}
- {% if module.layout == "module" %}
- <span class="module" id="module-{{ module.title | slugify }}"
- draggable="true" ondragstart="drag(event)">
- <span id="module-title" title="{{ module.summary }}">
- {{ module.title }}</span>
- <a target="_blank" href="{{ module.url }}">
- <img title="{{ module.type }} (press for info)" draggable="false" class="module-logo"
- {% if module.type == "structure" %}
- src="{% link assets/tabler_icons/building.svg %}" {% endif %}
- {% if module.type == "process" %}
- src="{% link assets/tabler_icons/rotate.svg %}" {% endif %}
- {% if module.type == "decision" %}
- src="{% link assets/tabler_icons/thumb-up.svg %}" {% endif %}
- {% if module.type == "culture" %}
- src="{% link assets/tabler_icons/palette.svg %}" {% endif %}
- /></a>
- <a onclick="this.parentNode.remove()" class="delete-module"
- style="display:none">
- <img src="{% link assets/tabler_icons/x.svg %}" /></a>
- </span>
- {% endif %}
- {% endfor %}
|