summaryrefslogtreecommitdiff
path: root/contact.xsl
blob: 63bcdc3b4e476f0c8b8c7b9aa26b0a5b3f6222e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  version="1.0" 
  xmlns="http://www.w3.org/1999/xhtml"
  xmlns:s="https://beratung-franzke.de/web-tpl">

  <xsl:include href="xsl/layout.xsl" />

  <xsl:template match="s:mailform" mode="html">
    <xsl:text disable-output-escaping="yes"><![CDATA[<?php]]></xsl:text>
    $address = "<xsl:value-of select="@address"/>";
    <xsl:text disable-output-escaping="yes"><![CDATA[?>]]></xsl:text>
    <!--
    <table class="center">
      <xsl:apply-templates mode="html" />
    </table>
    -->
  </xsl:template>

<!--
  <xsl:template match="s:project" mode="html">
    <tr>
      <td><strong><xsl:value-of select="@title" /></strong></td>
    </tr>
    <xsl:if test="@member">
      <tr>
        <td>
          <strong>Bearbeiter: </strong>
          <span class="member"><xsl:value-of select="@member" /></span>
        </td>
      </tr>
    </xsl:if>
    <tr>
      <td><xsl:apply-templates mode="html" /></td>
    </tr>
    <tr class="spacer">
      <td />
    </tr>
  </xsl:template>
    -->
</xsl:stylesheet>