---
layout: default
title: Projects
---
{% assign n = 2 %}
{% assign rows = site.projects.size | divided_by: n | ceil %}
{% for i in (1..rows) %}
{% assign offset = forloop.index0 | times: n %}
{% for item in site.projects limit:n offset:offset %}
{% assign parts = item.url | split: '/' %}
|
{% endfor %}
{% endfor %}