summaryrefslogtreecommitdiff
path: root/default/templates
diff options
context:
space:
mode:
authorPaul Buetow (centauri) <puppet@mx.buetow.org>2015-08-09 10:53:07 +0100
committerPaul Buetow (centauri) <puppet@mx.buetow.org>2015-08-09 10:53:07 +0100
commit2b40c40f32cecf6c3a82a0e88c0459084e73011a (patch)
treeb1089baaafb381f1693aceeaa65065bf3334eee3 /default/templates
parent7397ede1a0805f3bc0a14f04b6e4b4b38db168e6 (diff)
parent2fab3867d291514b6666a8bd582fe8ae4896a1c0 (diff)
Merge
Diffstat (limited to 'default/templates')
-rw-r--r--default/templates/html5.xml32
-rw-r--r--default/templates/plain.xml4
-rw-r--r--default/templates/rss2.feed.xml15
-rw-r--r--default/templates/xhtml.xml33
4 files changed, 84 insertions, 0 deletions
diff --git a/default/templates/html5.xml b/default/templates/html5.xml
new file mode 100644
index 0000000..70c50bb
--- /dev/null
+++ b/default/templates/html5.xml
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?>
+<content type="text/html">
+ <tag>!DOCTYPE html</tag>
+ <html>
+ <head>
+ <title>%%title%%</title>
+ <tag>meta http-equiv="Content-Type" content="text/html;charset=UTF-8"</tag>
+ <tag>meta name="author" content="Paul C. Buetow"</tag>
+ <tag>meta name="publisher" content="Xerl Template Engine (xerl.buetow.org)"</tag>
+ <tag>meta name="robots" content="index, follow"</tag>
+ <tag>meta name="revisit-after" content="7 days"</tag>
+ <tag>link rel="stylesheet" type="text/css" href="%%stylesurl%%$$style$$"</tag>
+ </head>
+ <body>
+ <div class="header">
+ <type class="bold">A fortune quote: </type>
+ <type class="italic">$$!/usr/games/fortune -s$$</type>
+ </div>
+ <div class="main">
+ <navigation/>
+ <noop>%%content%%</noop>
+ <div class="footer">
+ <noop>Generated in !!TIME!!s</noop>
+ <noop>| Powered by </noop>
+ <namedlink href="http://xerl.buetow.org">Xerl</namedlink>
+ <noop>| Xerl templates managed with Puppet/Git | Running on FreeBSD - The Power to Serve | </noop>
+ <namedlink href="http://sitemap.buetow.org">Sitemap</namedlink>
+ </div>
+ </div>
+ </body>
+ </html>
+</content>
diff --git a/default/templates/plain.xml b/default/templates/plain.xml
new file mode 100644
index 0000000..efa11e4
--- /dev/null
+++ b/default/templates/plain.xml
@@ -0,0 +1,4 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<content type="text/plain">
+ <noop>%%content%%</noop>
+</content>
diff --git a/default/templates/rss2.feed.xml b/default/templates/rss2.feed.xml
new file mode 100644
index 0000000..dfa5515
--- /dev/null
+++ b/default/templates/rss2.feed.xml
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<content type="application/rss+xml">
+ <tag>?xml version="1.0"?</tag>
+ <rss version="2.0">
+ <channel>
+ <title>buetow.org Newsfeed</title>
+ <hyperlink>http://%%host%%</hyperlink>
+ <description>buetow.org - Paul C. Buetows Tech Newsfeed</description>
+ <pubDate>$$!/bin/date$$</pubDate>
+ <generator>Xerl Web Engine (http://xerl.buetow.org)</generator>
+ <language>en</language>
+ <noop>%%content%%</noop>
+ </channel>
+ </rss>
+</content>
diff --git a/default/templates/xhtml.xml b/default/templates/xhtml.xml
new file mode 100644
index 0000000..4ea784c
--- /dev/null
+++ b/default/templates/xhtml.xml
@@ -0,0 +1,33 @@
+<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?>
+<content type="text/html">
+ <tag>!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"</tag>
+ <html xmlns="http://www.w3.org/1999/xhtml">
+ <head>
+ <title>%%title%%</title>
+ <meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"/>
+ <meta name="author" content="Paul C. Buetow"/>
+ <meta name="publisher" content="Xerl Template Engine (xerl.buetow.org)"/>
+ <meta name="distribution" content="global"/>
+ <meta name="robots" content="index, follow"/>
+ <meta name="language" content="en, english"/>
+ <meta name="revisit-after" content="7 days"/>
+ <link rel="stylesheet" type="text/css" href="%%stylesurl%%$$style$$"/>
+ </head>
+ <body>
+ <div class="header">
+ <type class="bold">A fortune quote: </type>
+ <type class="italic">$$!/usr/games/fortune -s$$</type>
+ </div>
+ <div class="main">
+ <navigation/>
+ <noop>%%content%%</noop>
+ <div class="footer">
+ <noop>Generated in !!TIME!!s</noop>
+ <noop>| Powered by </noop>
+ <namedlink href="http://xerl.buetow.org">Xerl</namedlink>
+ <noop>| Xerl templates managed with Puppet/Git</noop>
+ </div>
+ </div>
+ </body>
+ </html>
+</content>