summaryrefslogtreecommitdiff
path: root/build/stylesheets/style-html-single.xsl
diff options
context:
space:
mode:
Diffstat (limited to 'build/stylesheets/style-html-single.xsl')
-rw-r--r--build/stylesheets/style-html-single.xsl27
1 files changed, 27 insertions, 0 deletions
diff --git a/build/stylesheets/style-html-single.xsl b/build/stylesheets/style-html-single.xsl
new file mode 100644
index 000000000..b527b4ece
--- /dev/null
+++ b/build/stylesheets/style-html-single.xsl
@@ -0,0 +1,27 @@
+<?xml version='1.0'?>
+<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
+
+<!-- Import our base stylesheet -->
+<xsl:import
+href="file:///usr/share/sgml/docbook/stylesheet/xsl/nwalsh/html/docbook.xsl"/>
+
+<!-- Include our common parameters -->
+<xsl:include href="style-common.xsl"/>
+
+
+<!-- Any html-specific parameters follow -->
+<!-- You may find some in /etc/sgml/docbook-xsl/html/param.xsl -->
+
+<!-- Force UTF-8 encoding -->
+<xsl:output method="html" encoding="UTF-8" indent="no"/>
+
+<!-- Where to put resulting html. Don't forget trailing slash! -->
+<xsl:param name="base.dir" select="'./'"/>
+
+<!-- Do we want fancy icons around note, warning, etc.? -->
+<xsl:param name="admon.graphics">0</xsl:param>
+
+<!-- Do we want fancy icons instead of Next, Prev, Up, Home? -->
+<xsl:param name="navig.graphics">0</xsl:param>
+
+</xsl:stylesheet>