From ae4200401dfc950efea0ab83dc6504c48bbb6bd0 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jakub=20Sko=C5=99epa?= <jakub@skorepa.info>
Date: Sat, 26 Mar 2016 19:49:51 +0100
Subject: [PATCH] Implement php redirects

Fixes #4
---
 sitegin/writeFiles.js                   | 1 -
 theme/templates/partials/list.html.nunj | 4 +++-
 theme/templates/redirect.php.nunj       | 1 +
 3 files changed, 4 insertions(+), 2 deletions(-)
 create mode 100644 theme/templates/redirect.php.nunj

diff --git a/sitegin/writeFiles.js b/sitegin/writeFiles.js
index 786c4c02..781dbd76 100644
--- a/sitegin/writeFiles.js
+++ b/sitegin/writeFiles.js
@@ -25,7 +25,6 @@ module.exports = function(obj) {
       if(article.otherContent) {
         article.otherContent.forEach(function(o) {
           var f = path.join(builddir,article.file,'index.'+o.type);
-          console.log(f);
           doWrite(f, o.content);
         })
       }
diff --git a/theme/templates/partials/list.html.nunj b/theme/templates/partials/list.html.nunj
index 340efb55..71717a83 100644
--- a/theme/templates/partials/list.html.nunj
+++ b/theme/templates/partials/list.html.nunj
@@ -21,7 +21,9 @@
                   {% if page.metadata.perex_e %}
                     {{page.metadata.perex_e | truncate}}
                   {% else %}
-                    {{ page.content | striptags | truncate }}
+                    {% if page.content %}
+                      {{ page.content | string | striptags | truncate }}
+                    {% endif %}
                   {% endif %}
                 {% endif %}
               </div>
diff --git a/theme/templates/redirect.php.nunj b/theme/templates/redirect.php.nunj
new file mode 100644
index 00000000..355cc0a5
--- /dev/null
+++ b/theme/templates/redirect.php.nunj
@@ -0,0 +1 @@
+<?php header('location: {{config.baseurl}}/{{content}}');
-- 
GitLab