summaryrefslogtreecommitdiff
path: root/modules/blog/templates
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2022-01-12 02:26:25 +0100
committerHugo Hörnquist <hugo@lysator.liu.se>2022-01-12 02:26:25 +0100
commitdd28dcf3d620a4ac7d0a1532b812213cf094cd3c (patch)
treea3fa8c8ef446de2bcc2f317bceb4bca868f7e0f0 /modules/blog/templates
parentMove webdav into profiles. (diff)
downloadwebdav_server-dd28dcf3d620a4ac7d0a1532b812213cf094cd3c.tar.gz
webdav_server-dd28dcf3d620a4ac7d0a1532b812213cf094cd3c.tar.xz
Revert "Move webdav into profiles."
It actually reverts the non-need for the nginx module webdav_ext. Since Omnifocus requires PROPFIND. This reverts commit edf6ffe8b399679ba28cc5e558a6838919dd1ee8.
Diffstat (limited to 'modules/blog/templates')
-rw-r--r--modules/blog/templates/settings.php.epp13
-rw-r--r--modules/blog/templates/special-files.ini.epp16
2 files changed, 0 insertions, 29 deletions
diff --git a/modules/blog/templates/settings.php.epp b/modules/blog/templates/settings.php.epp
deleted file mode 100644
index c1ed2d7..0000000
--- a/modules/blog/templates/settings.php.epp
+++ /dev/null
@@ -1,13 +0,0 @@
-<%- | String $author,
- String $title,
- String $subtitle,
- Boolean $has_comments = false,
-| -%>
-<%= '<?php' %>
-# FILE MANAGED BY PUPPET
-$author = "<%= $author %>";
-$blog_title = "<%= $title %>";
-$blog_subtitle = "<%= $subtitle %>";
-$http_host = $_SERVER["HTTP_HOST"];
-$urlbase = "http://$http_host/hugo";
-$has_comments = <%= if $has_comments { 'true' } else { 'false' } %>;
diff --git a/modules/blog/templates/special-files.ini.epp b/modules/blog/templates/special-files.ini.epp
deleted file mode 100644
index 66b779a..0000000
--- a/modules/blog/templates/special-files.ini.epp
+++ /dev/null
@@ -1,16 +0,0 @@
-<%- | Array[Tuple[String,String]] $foot_files,
-| -%>
-; FILE MANAGED BY PUPPET
-;
-; Which files on the website that are "special"
-; This basicly means that they shouldnt have comments
-[footnote]
-<%- for $foot_files.each |$item| { -%>
-files[] = <%= $item[0] %>
-title[] = <%= $item[1] %>
-<%- } -%>
-
-[other]
-files[] = list
-files[] = entry-not-found.md
-