]> git.xn--bdkaa.com Git - xn--bdkaa.com.git/commitdiff
Add projects page
authorEvgenii Akentev <i@ak3n.com>
Wed, 18 Jan 2023 19:36:42 +0000 (22:36 +0300)
committerEvgenii Akentev <i@ak3n.com>
Wed, 18 Jan 2023 19:36:42 +0000 (22:36 +0300)
content/pages/projects.md [new file with mode: 0644]
content/static/images/cubicaltt.png [new file with mode: 0644]
content/static/images/rendertable.png [new file with mode: 0644]
content/static/images/whereareyougame.png [new file with mode: 0644]
themes/theme/layouts/index.html
themes/theme/layouts/pages/single.html [new file with mode: 0644]

diff --git a/content/pages/projects.md b/content/pages/projects.md
new file mode 100644 (file)
index 0000000..7ca97b5
--- /dev/null
@@ -0,0 +1,21 @@
+---
+title: projects
+---
+
+### [rendertable](https://table.ak3n.com)
+
+[![rendertable screenshot](/static/images/rendertable.png)](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)
+
+[![cubicaltt screenshot](/static/images/cubicaltt.png)](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)
+
+[![where are you game screenshot](/static/images/whereareyougame.png)](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
diff --git a/content/static/images/cubicaltt.png b/content/static/images/cubicaltt.png
new file mode 100644 (file)
index 0000000..74541b2
Binary files /dev/null and b/content/static/images/cubicaltt.png differ
diff --git a/content/static/images/rendertable.png b/content/static/images/rendertable.png
new file mode 100644 (file)
index 0000000..2ac23e1
Binary files /dev/null and b/content/static/images/rendertable.png differ
diff --git a/content/static/images/whereareyougame.png b/content/static/images/whereareyougame.png
new file mode 100644 (file)
index 0000000..38eee9a
Binary files /dev/null and b/content/static/images/whereareyougame.png differ
index e271633eb918019f5552ec42a781351cf16b5903..e4430dba0015fc4b6e4db63e7d8dac1907122d11 100644 (file)
@@ -8,6 +8,9 @@
     <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>
@@ -15,7 +18,7 @@
 
 <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>
diff --git a/themes/theme/layouts/pages/single.html b/themes/theme/layouts/pages/single.html
new file mode 100644 (file)
index 0000000..0c5ce02
--- /dev/null
@@ -0,0 +1,14 @@
+{{ 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" . }}