summaryrefslogtreecommitdiffstats
path: root/poc.html
diff options
context:
space:
mode:
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>