Gitweb:
https://git.exim.org/exim-website.git/commitdiff/c9b905e03de16044871de2424c8841b1438001ac
Commit: c9b905e03de16044871de2424c8841b1438001ac
Parent: 79096558caa37b1acc6af77f5e4c67720ea25662
Author: Heiko Schlittermann (HS12-RIPE) <hs@???>
AuthorDate: Wed Dec 14 21:25:58 2022 +0100
Committer: Heiko Schlittermann (HS12-RIPE) <hs@???>
CommitDate: Wed Dec 14 21:25:58 2022 +0100
new: add legal (about ownershop of the exim.org domain name)
---
templates/web/legal.xsl | 30 ++++++++++++++++++++++++++++++
templates/web/legal.xsl.sig | Bin 0 -> 310 bytes
templates/wrapper.xsl | 5 +++--
3 files changed, 33 insertions(+), 2 deletions(-)
diff --git a/templates/web/legal.xsl b/templates/web/legal.xsl
new file mode 100644
index 0000000..9893c99
--- /dev/null
+++ b/templates/web/legal.xsl
@@ -0,0 +1,30 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
+ <!-- WRAPPER -->
+ <xsl:import href="../wrapper.xsl"/>
+ <xsl:template match="/"> <xsl:apply-imports/> </xsl:template>
+ <xsl:variable name="docroot" select="'.'"/>
+
+ <!-- Title -->
+ <xsl:variable name="html.head.title" select="'Legal'"/>
+
+ <!-- Canonical -->
+ <xsl:variable name="html.head.append">
+ <link rel="canonical" href="https://www.exim.org/legal.html"/>
+ </xsl:variable>
+
+ <!-- CONTENT -->
+ <xsl:template name="content">
+
+ <!-- Title -->
+ <h2><xsl:value-of select="$html.head.title"/></h2>
+
+ <h3>Legal information</h3>
+ We, the Exim Maintainers, regard the domain to be owned by us as a
+ group. However, due to the small size of the project and lack of
+ funding, the domain has to be nominally owned for registration purposes
+ by an individual. As of 2022-11-22 this is
+ <a href="mailto:hs@schlittermann.de">Heiko Schlittermann</a>
+
+ </xsl:template>
+</xsl:stylesheet>
diff --git a/templates/web/legal.xsl.sig b/templates/web/legal.xsl.sig
new file mode 100644
index 0000000..e8d2440
Binary files /dev/null and b/templates/web/legal.xsl.sig differ
diff --git a/templates/wrapper.xsl b/templates/wrapper.xsl
index 39fb18b..51010a7 100644
--- a/templates/wrapper.xsl
+++ b/templates/wrapper.xsl
@@ -37,7 +37,7 @@
<title>
<xsl:value-of select="$html.head.title"/>
</title>
-
+
<xsl:copy-of select="$html.head.append"/>
</head>
<body class="no-js">
@@ -66,6 +66,7 @@
<li> <a href="https://bugs.exim.org/">Bugs</a> </li>
<li> <a href="{$docroot}/static/doc/security">Security</a> </li>
<li> <a href="{$docroot}/credits.html">Credits</a> </li>
+ <li> <a href="{$docroot}/legal.html">Legal</a> </li>
<!-- Search Field -->
@@ -114,7 +115,7 @@
<!-- Local JavaScript -->
<script type="text/javascript" src="{$staticroot}/js/common.js"></script>
-
+
<xsl:copy-of select="$html.body.append"/>
</body>