summaryrefslogtreecommitdiffstats
path: root/poc.html
diff options
context:
space:
mode:
authorSadeep Madurange <sadeep@asciimx.com>2025-12-20 21:36:45 +0800
committerSadeep Madurange <sadeep@asciimx.com>2025-12-20 21:36:45 +0800
commite15f1076b59e997108914f6a5b9b28652d323268 (patch)
tree294b0c5da8f8410ad0aab89dd2c5d107f581e083 /poc.html
parent31616ee1b8ff316d6558a0e7c87e4bd4211c9932 (diff)
downloadwww-e15f1076b59e997108914f6a5b9b28652d323268.tar.gz
Change website structure to a log.
Diffstat (limited to 'poc.html')
-rw-r--r--poc.html26
1 files changed, 0 insertions, 26 deletions
diff --git a/poc.html b/poc.html
deleted file mode 100644
index e2e773d..0000000
--- a/poc.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.poc.size | divided_by: n | ceil %}
- {% for i in (1..rows) %}
- <tr>
- {% assign offset = forloop.index0 | times: n %}
- {% for item in site.poc 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>