Skip to content

Latest commit

 

History

History
37 lines (30 loc) · 1006 Bytes

index.md

File metadata and controls

37 lines (30 loc) · 1006 Bytes
layout
default
{% capture introduction %}{% include markdown/Introduction.md %}{% endcapture %} {{ introduction | markdownify }}
	{% for category in site.data.categories %}

		<div class="grid-col w-sm-100 w-mid-50">
			<div class="component-tile">
				<h2 class="tile-header">
					<img src="{{ site.baseurl }}/assets/img/icon-{{ category.slug }}.svg" alt="Icon for {{ category.pretty }}"  class="tile-icon"/>
					<span class="tile-heading">{{ category.pretty }}</span>
				</h2>

				<ul class="tile-list">
				{% for component in site.component %}
					{% if component.category == category.slug %}
						<li><a href="{{ site.baseurl }}{{ component.url }}">{{ component.title }}</a></li>
					{% endif %}
				{% endfor %}
				</ul>
			</div><!--/.component-tile-->
		</div><!--/.grid-col-->

	{% endfor %}

</div><!--/.grid-layout-->