Sha256: df8ca1df8d2a85f34105aa6a93336545908161ea50af3a9371230cbb9b407183
Contents?: true
Size: 771 Bytes
Versions: 1
Compression:
Stored size: 771 Bytes
Contents
{%- assign allcountries = site.data.countries %} {%- assign except = include.except | split: ", " %} <div class="row row-cols-1 row-cols-md-2 g-3 my-4 navigation-tiles"> {%- for current_page in site.pages | sorted %} {%- if current_page.title and current_page.search_exclude != true and current_page.type == include.type %} {%- unless except contains current_page.name %} <div class="col d-grid"> <a role="button" class="btn bg-light py-4 fs-3 hover-primary" href="{{ current_page.url | relative_url }}">{{current_page.title}}{% if current_page.country_code %}<span class="flag-icon shadow-sm ms-3 flag-icon-{{current_page.country_code | downcase }}"></span>{% endif %}</a> </div> {% endunless %} {%- endif %} {%- endfor %} </div>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
elixir-toolkit-theme-1.26.0 | _includes/section-navigation-tiles-simple.html |