From df9bc9288b9aec590d39beb43eed0f7c2d577915 Mon Sep 17 00:00:00 2001 From: Sadeep Madurange Date: Tue, 21 Apr 2026 17:16:24 +0800 Subject: Minimalist theme. --- projects.html | 42 ------------------------------------------ 1 file changed, 42 deletions(-) delete mode 100644 projects.html (limited to 'projects.html') diff --git a/projects.html b/projects.html deleted file mode 100644 index 5ebc056..0000000 --- a/projects.html +++ /dev/null @@ -1,42 +0,0 @@ ---- -layout: default -title: Projects ---- - -
-

{{ page.title }}

- - {% assign n = 2 %} - {% assign projects = site.log | where: "project", true | sort: 'date' | reverse %} - {% assign rows = projects.size | divided_by: n %} - - {% assign remainder = projects.size | modulo: n %} - {% if remainder != 0 %} - {% assign rows = rows | plus: 1 %} - {% endif %} - - {% for i in (1..rows) %} - - {% assign offset = forloop.index0 | times: n %} - {% for item in projects limit:n offset:offset %} - - {% endfor %} - - {%- comment -%}Fill empty cells if this is the last row and has odd number of items{%- endcomment -%} - {% if forloop.last %} - {% assign items_in_last_row = projects.size | minus: offset %} - {% assign empty_cells = n | minus: items_in_last_row %} - {% for j in (1..empty_cells) %} - - {% endfor %} - {% endif %} - - {% endfor %} -
- {% assign parts = item.url | split: '/' %} - - {{ item.title }} -
{{ item.title }}
-
-
-
-- cgit v1.2.3