Skip to content

Latest commit

 

History

History
executable file
·
37 lines (31 loc) · 1.16 KB

examples.md

File metadata and controls

executable file
·
37 lines (31 loc) · 1.16 KB
title permalink
Customisation and How tos
/examples

Examples and How To's on {{ site.title }} Customisation.

More in-depth how tos and examples will soon be added to Themelize.me.

{% assign grouped = site.docs | group_by: 'category' | sort: 'order' %}
{% for group in grouped %}
  {% if group.name == 'Examples' %}
    {% assign items = group.items %}
    {% for item in items %}
      <a href="{{ site.baseurl }}{{ item.url }}" class="list-group-item list-group-item-action d-flex align-items-start gap-3 {% if item.url == page.url %}active{% endif %}">
        {% if item.icon %}
          <i class="bi bi-{{ item.icon }} text-primary fs-2"></i>
        {% endif %}
        <div>
          <div class="fw-bold d-block">
            {{ item.title }}
          </div>
          {% if item.teaser %}
            <div class="opacity-75">{{ item.teaser }}</div>
          {% endif %}
        </div>
      </a>
  {% endfor %}
  {% endif %}
{% endfor %}