Subversion Repositories tendra.SVN

Rev

Rev 6 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
6 7u83 1
<?xml version="1.0"?>
2
 
3
<!--
4
  $Id$
5
-->
6
 
7
<xsl:stylesheet version="1.0"
8
  xmlns="http://www.w3.org/1999/xhtml"
9
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
10
  xmlns:xalan="http://xml.apache.org/xslt">
11
 
12
  <xsl:import href="navigation.xsl"/>
13
  <xsl:output method="xml" indent="yes" xalan:indent-amount="2"/>
14
  <xsl:output doctype-public="-//W3C//DTD XHTML 1.0 Transitional//EN"
15
    doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"/>
16
 
17
  <xsl:template match="news">
18
    <html dir="ltr" xml:lang="en">
19
      <head>
20
        <title>The TenDRA Compiler Project - FAQ</title>
21
        <link rel="shortcut icon"
22
          href="http://www.tendra.org/favicon.ico" type="image/x-icon"/>
23
        <link rel="stylesheet" href="style.css" type="text/css"/>
24
        <meta http-equiv="Content-Type"
25
          content="text/html; charset=ISO-8859-15"/>
26
      </head>
27
 
28
      <body>
29
        <xsl:apply-imports/>
30
 
31
        <div id="content">
32
          <h1><span>FAQ</span></h1>
33
 
34
          <p><span>Frequently Asked Questions</span></p>
35
          <ul>
36
            <xsl:for-each select="entry">
37
            <xsl:sort data-type="text" order="descending" select="date"/>
38
              <li>
39
                <b><xsl:value-of select="date"/></b>: <xsl:value-of select="content"/>
40
              </li>
41
            </xsl:for-each>
42
          </ul>
43
        </div>
44
 
45
        <div id="compliance">
46
          <p>
47
            <a href="http://validator.w3.org/check?uri=referer">
48
              <img src="valid-xhtml10.png" height="31" width="88"
49
                alt="Valid XHTML 1.0!"/>
50
            </a>
51
 
52
            <a href="http://jigsaw.w3.org/css-validator/">
53
              <img src="vcss.png" height="31" width="88" alt="Valid CSS!"/>
54
            </a>
55
          </p>
56
        </div>
57
      </body>
58
    </html>
59
  </xsl:template>
60
</xsl:stylesheet>