1<?xml version="1.0"?>
2<!-- $FreeBSD$ -->
3<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
4                version='1.0'
5                xmlns="http://www.w3.org/TR/xhtml1/transitional"
6                xmlns:db="http://docbook.org/ns/docbook"
7                exclude-result-prefixes="db">
8
9  <xsl:param name="release.url"/>
10  <xsl:param name="release.branch"/>
11  <xsl:param name="release.maillist"/>
12
13  <xsl:template name="user.footer.content">
14    <p align="center"><small>This file, and other release-related documents,
15      can be downloaded from <a href="{$release.url}"><xsl:value-of select="$release.url"/></a>.</small></p>
16
17    <p align="center"><small>For questions about FreeBSD, read the
18      <a href="http://www.FreeBSD.org/docs.html">documentation</a> before
19      contacting &lt;<a href="mailto:questions@FreeBSD.org">questions@FreeBSD.org</a>&gt;.</small></p>
20
21    <p align="center"><small>All users of FreeBSD <xsl:value-of select="$release.branch"/> should
22      subscribe to the &lt;<a href="mailto:{$release.maillist}@FreeBSD.org"><xsl:value-of select="$release.maillist"/>@FreeBSD.org</a>&gt;
23      mailing list.</small></p>
24  
25    <p align="center"><small>For questions about this documentation,
26      e-mail &lt;<a href="mailto:doc@FreeBSD.org">doc@FreeBSD.org</a>&gt;.</small></p>
27  </xsl:template>
28</xsl:stylesheet>
29