2016-03-07 04:08:13 +01:00
|
|
|
---
|
|
|
|
layout: archive
|
|
|
|
title: "Portfolio"
|
|
|
|
permalink: /portfolio/
|
|
|
|
---
|
2016-03-07 15:51:50 +01:00
|
|
|
|
2016-03-07 16:27:07 +01:00
|
|
|
{% include base_path %}
|
|
|
|
{% include group-by-array collection=site.portfolio field='categories' %}
|
2016-03-07 04:08:13 +01:00
|
|
|
|
|
|
|
{% for category in group_names %}
|
|
|
|
{% assign posts = group_items[forloop.index0] %}
|
2016-03-11 03:53:28 +01:00
|
|
|
<h2 id="{{ category | slugify }}" class="archive__subtitle">{{ category }}</h2>
|
2016-03-07 04:08:13 +01:00
|
|
|
{% for post in posts %}
|
2016-03-11 03:13:01 +01:00
|
|
|
{% include archive-list-single.html %}
|
2016-03-07 04:08:13 +01:00
|
|
|
{% endfor %}
|
|
|
|
{% endfor %}
|