summaryrefslogtreecommitdiffstats
path: root/templates/layout.html
blob: 6e24a22c43a9a286ebcee645859597b24c138ff6 (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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
$def with (content)
<!DOCTYPE html>
<html>
<head>
  <title>spline - $content.title</title>
  <link type="text/css" rel="stylesheet" href="/static/css/main.css">
</head>

<body>
  <div id="header">
    <table cellspacing="10" cellpadding="5">
    <tr>
      <td>
        <a href="/">
          <img border="0" src="/static/img/penguin.png" alt="Pinguin" />
        </a>
      </td>

      <td>
         <p class="headline">spline</p>
         <p class="subtext">
           <span class="spline">s</span>tudentisches
           <span class="spline">p</span>rojekt
           <span class="spline">li</span>nux
           <span class="spline">ne</span>tzwerk
         </p>
      </td>
    </tr>
    </table>
  </div>

  <div id="title">
	$:content.headline
  </div>

  <div id="content">
	$:content
  </div>

  <div id="footer">
    <hr>

    Any questions? Write us an e-mail to:
    <a href="mailto:mailman at spline dot inf dot fu-berlin dot de">
      mailman at spline dot inf dot fu-berlin dot de
    </a>

    <table width="100%" border="0">
      <tr>
        <td style="width: 33%; text-align: left;"><img src="/static/img/mailman.jpg" alt="Delivered by Mailman" border=0><br>version 2.1.11</td>
        <td style="width: 34%; text-align: center;"><img src="/static/img/PythonPowered.png" alt="Python Powered" border=0></a></td>
        <td style="width: 33%; text-align: right;"><img src="/static/img/gnu-head-tiny.jpg" alt="GNU's Not Unix" border=0></a></td>
      </tr>
    </table>
  </div>
</body>
</html>