summaryrefslogtreecommitdiffstats
path: root/poc.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 /poc.html
parent9ac8970b08550a83e9ba686d0e9357654373a047 (diff)
downloadwww-8cbe75f0047732c865f58e2f847a5ffafe066e71.tar.gz
Change projects to poc and blog to log.
Diffstat (limited to 'poc.html')
-rw-r--r--poc.html26
1 files changed, 26 insertions, 0 deletions
diff --git a/poc.html b/poc.html
new file mode 100644
index 0000000..e2e773d
--- /dev/null
+++ b/poc.html
@@ -0,0 +1,26 @@
+---
+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>