--- /dev/null
+---
+title: projects
+---
+
+### [rendertable](https://table.ak3n.com)
+
+[](https://table.ak3n.com)
+
+Tool to create websites using the google sheets as a data source with sorting and filtering functionality. Built with python, flask and sqlite. [Source code](https://git.ak3n.com/?p=render-table.git).
+
+### [cubicaltt](https://cubicaltt.ak3n.com)
+
+[](https://cubicaltt.ak3n.com)
+
+Web version of [cubicalltt](https://github.com/mortberg/cubicaltt) built with reflex, ghcjs and monaco editor. [Source code](https://git.ak3n.com/?p=cubicaltt.git).
+
+### [where are you](https://whereareyougame.ak3n.com)
+
+[](https://whereareyougame.ak3n.com)
+
+Text-based variation of geoguessr using the openstreetmap api built for game jam hackaton. Python, bottle, js. [Source code](https://git.ak3n.com/?p=where-are-you.git).
\ No newline at end of file
<ul>
<li><a href="https://twitter.com/ak3n">twitter</a></li>
<li><a href="https://git.ak3n.com/">code</a></li>
+ {{ range (where .Site.RegularPages.ByPublishDate.Reverse "Section" "pages") }}
+ <li><a href="{{ .Permalink }}">{{ .Title }}</a></li>
+ {{ end }}
<li><a href="mailto:i@ak3n.com">say hi</a></li>
</ul>
</section>
<section id="dashboard">
<ul>
- {{ range .Site.RegularPages.ByPublishDate.Reverse }}
+ {{ range (where .Site.RegularPages.ByPublishDate.Reverse "Section" "posts") }}
<div class="posts">
<div id=date class="date-time-title">
<time>{{ .Date.Format (.Site.Params.dateform | default "02 Jan 06") }}</time>
--- /dev/null
+{{ partial "header.html" . }}
+
+{{ partial "subheader.html" . }}
+
+<section class="blog-post">
+ <h1>{{ .Title }}</h1>
+ <div class="blog-post-subheader">
+ </div>
+ <div class="blog-post-content">
+ {{ partial "headline.html" .Content }}
+ </div>
+</section>
+
+{{ partial "footer.html" . }}