aboutsummaryrefslogtreecommitdiff
path: root/template/page.xsl
diff options
context:
space:
mode:
Diffstat (limited to 'template/page.xsl')
-rw-r--r--template/page.xsl23
1 files changed, 23 insertions, 0 deletions
diff --git a/template/page.xsl b/template/page.xsl
new file mode 100644
index 0000000..a271e4a
--- /dev/null
+++ b/template/page.xsl
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<xsl:stylesheet
+ version="1.0"
+ xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
+ xmlns:xalan="http://xml.apache.org/xalan"
+ xmlns:InputXSLT="function.inputxslt.application"
+ exclude-result-prefixes="xalan InputXSLT"
+>
+
+<xsl:include href="master.xsl"/>
+<xsl:include href="[utility/date-time.xsl]"/>
+
+<xsl:template name="title-text">
+ <xsl:value-of select="/entry/h1"/> @ /home/adrian
+</xsl:template>
+
+<xsl:template match="data/entry">
+ <div class="last article">
+ <xsl:copy-of select="./*"/>
+ </div>
+</xsl:template>
+
+</xsl:stylesheet>