diff options
| author | Sadeep Madurange <sadeep@asciimx.com> | 2025-12-20 11:25:26 +0800 |
|---|---|---|
| committer | Sadeep Madurange <sadeep@asciimx.com> | 2025-12-20 11:25:26 +0800 |
| commit | 8cbe75f0047732c865f58e2f847a5ffafe066e71 (patch) | |
| tree | acd75f1a370bbdcc83db4cdaab481fb700c78db9 /poc.html | |
| parent | 9ac8970b08550a83e9ba686d0e9357654373a047 (diff) | |
| download | www-8cbe75f0047732c865f58e2f847a5ffafe066e71.tar.gz | |
Change projects to poc and blog to log.
Diffstat (limited to 'poc.html')
| -rw-r--r-- | poc.html | 26 |
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> |
