summaryrefslogtreecommitdiffstats
path: root/projects.html
diff options
context:
space:
mode:
authorSadeep Madurange <sadeep@asciimx.com>2025-12-20 11:25:26 +0800
committerSadeep Madurange <sadeep@asciimx.com>2025-12-20 11:25:26 +0800
commit8cbe75f0047732c865f58e2f847a5ffafe066e71 (patch)
treeacd75f1a370bbdcc83db4cdaab481fb700c78db9 /projects.html
parent9ac8970b08550a83e9ba686d0e9357654373a047 (diff)
downloadwww-8cbe75f0047732c865f58e2f847a5ffafe066e71.tar.gz
Change projects to poc and blog to log.
Diffstat (limited to 'projects.html')
-rw-r--r--projects.html26
1 files changed, 0 insertions, 26 deletions
diff --git a/projects.html b/projects.html
deleted file mode 100644
index b24bc90..0000000
--- a/projects.html
+++ /dev/null
@@ -1,26 +0,0 @@
----
-layout: default
-title: Projects
----
-
-<div class="container">
- <h2>{{ page.title }}</h2>
- <table>
- {% assign n = 2 %}
- {% assign rows = site.projects.size | divided_by: n | ceil %}
- {% for i in (1..rows) %}
- <tr>
- {% assign offset = forloop.index0 | times: n %}
- {% for item in site.projects limit:n offset:offset %}
- <td class="project-item">
- {% assign parts = item.url | split: '/' %}
- <a href="{{ parts[2] }}" class="link-decor-none">
- <img src="{{ parts[2] }}/{{ item.thumbnail }}" alt="{{ item.title }}">
- <h5>{{ item.title }}</h5>
- </a>
- </td>
- {% endfor %}
- </tr>
- {% endfor %}
- </table>
-</div>