blob: 5f06646893c27a12fb5dcb6d15599085724e037f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
---
layout: default
title: Projects
---
<table>
{% assign rows = site.projects.size | divided_by: 2.0 | ceil %}
{% for i in (1..rows) %}
<tr>
{% assign offset = forloop.index0 | times: 2 %}
{% for item in site.projects limit:2 offset:offset %}
<td class="project-item">
{% assign parts = item.url | split: '/' %}
<img src="{{ parts[2] }}/{{ item.thumbnail }}" alt="{{ item.title }}">
<h5><a href="{{ parts[2] }}">{{ item.title }}</a></h5>
</td>
{% endfor %}
</tr>
{% endfor %}
</table>
|