module.html 946 B

12345678910111213141516171819202122232425262728293031
  1. ---
  2. layout: default
  3. ---
  4. <article class="post">
  5. <header class="post-header">
  6. <div class="page-type">Module /
  7. {{ page.type }}
  8. <img title="{{ page.type }}" draggable="false" class="module-logo"
  9. {% if page.type == "structure" %}
  10. src="{% link assets/tabler_icons/building.svg %}" {% endif %}
  11. {% if page.type == "process" %}
  12. src="{% link assets/tabler_icons/rotate.svg %}" {% endif %}
  13. {% if page.type == "decision" %}
  14. src="{% link assets/tabler_icons/thumb-up.svg %}" {% endif %}
  15. {% if page.type == "culture" %}
  16. src="{% link assets/tabler_icons/palette.svg %}" {% endif %}
  17. />
  18. </div>
  19. <h1 class="post-title">{{ page.title }}</h1>
  20. </header>
  21. <p id="module-summary">{{ page.summary }}</p>
  22. <p><strong>[Module pages are works in progress]</strong></p>
  23. <div class="post-content">
  24. {{ content }}
  25. </div>
  26. </article>