summaryrefslogtreecommitdiffstats
path: root/templates/layout.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/layout.html')
-rw-r--r--templates/layout.html57
1 files changed, 57 insertions, 0 deletions
diff --git a/templates/layout.html b/templates/layout.html
new file mode 100644
index 0000000..6e24a22
--- /dev/null
+++ b/templates/layout.html
@@ -0,0 +1,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>