20e7ca0fc8169195da9bacb02b4d13bb5925424a
[exim-website.git] / templates / web / mirrors.xsl
1 <?xml version="1.0" encoding="UTF-8"?>
2
3 <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
4
5         <!-- WRAPPER -->
6                 <xsl:import href="../wrapper.xsl"/>
7                 <xsl:template match="/"> <xsl:apply-imports/> </xsl:template>
8
9                 <xsl:variable name="docroot" select="'.'"/>
10
11         <!-- Title -->
12                 <xsl:variable name="html.head.title" select="'Download sites for Exim'"/>
13
14         <!-- Canonical -->
15                 <xsl:variable name="html.head.append">
16                         <link rel="canonical" href="https://www.exim.org/mirrors.html"/>
17                 </xsl:variable>
18
19         <!-- CONTENT -->
20                 <xsl:template name="content">
21
22                         <!-- Title -->
23                                 <h2>
24                                         <xsl:value-of select="$html.head.title"/>
25                                 </h2>
26
27
28                                 <p>
29                                         <xsl:text>Exim is available as a native package for a number of software distributions. The sources are available as
30                                         a tarball and from our </xsl:text>
31                                         <a href="https://git.exim.org/exim.git">Git Repo,</a>
32
33                                         <xsl:text> which is mirrored on </xsl:text>
34                                         <a href="https://github.com/Exim/exim">Github</a>.
35
36                                         <xsl:text>Further information on the binary and OS distributions can be found in the </xsl:text>
37                                         <a href="https://wiki.exim.org/ObtainingExim">Exim Wiki</a>.
38
39                                         <xsl:text>If we published maintenance releases, you can find the tarballs in the </xsl:text>
40                                         <a href="https://downloads.exim.org/exim4/fixes/">fixes</a>
41
42                                         <xsl:text> directory.</xsl:text>
43                                 </p>
44
45             <h3>Verification of Downloads</h3>
46
47             <p>
48             All published tarballs are cryptographically signed with an OpenPGP implementation (such as GnuPG).
49             The signatures are distributed alongside the tarballs.
50             The signatures are created with keys belonging to the developers.
51             The keys can be found in our
52             <a href="https://downloads.exim.org/Exim-Maintainers-Keyring.asc">maintainers keyring</a>.
53             (Please crosscheck these keys with keys you can find at other sources.)
54             </p>
55             <p>
56             The exim.org domain supports <a href="https://wiki.gnupg.org/WKD">the WKD mechanism</a> for OpenPGP key retrieval.
57             </p>
58
59             <h3>Exim Git Repositories</h3>
60
61             <p>If you prefer tracking our commits to the source tree directly via Git:
62             <ul>
63                 <li>Main Git Repository: <code>git://git.exim.org/exim.git</code></li>
64                 <li>Web interface: <a href="https://git.exim.org/exim.git">https://git.exim.org/exim.git</a></li>
65                 <li>Mirror at GitHub <a href="https://github.com/Exim/exim.git">https://github.com/Exim/exim.git</a></li>
66             </ul>
67             All releases get a signed Git tag.
68             </p>
69
70             </xsl:template>
71
72 </xsl:stylesheet>