]> git.madduck.net Git - debian/web/pdo.git/blob - template.txt

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

initial commit
[debian/web/pdo.git] / template.txt
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2   "http://www.w3.org/TR/xhtml1/DTD/xhtml1.dtd">
3 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
4 <# copyright="""
5   template.txt : site template (for rest2web)
6
7   Copyright © martin f. krafft <madduck ät debian.org>
8   Released under the terms of the Creative Commons Attribution-
9   NonCommercial-ShareAlike 2.5 Licence:
10     http://creativecommons.org/licenses/by-nc-sa/2.5/
11
12   Part of the source code for the site http://people.debian.org/~madduck/
13
14   svn: http://svn.madduck.net/pub/debian/web/people.debian.org--madduck/
15   """
16 #>
17 <head>
18   <title><% title %> - madduck's Debian stuff</title>
19
20   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
21
22   <meta http-equiv="imagetoolbar" content="no" />
23
24   <link rel="made" href="mailto:madduck&#37;&#52;&#48;debian&#46;org" />
25   <link rel="start" href="./<% path_to_root %>" title="Front page" />
26
27   <link rel="stylesheet" media="all" type="text/css"
28     href="<% path_to_root %>css/base.css" title="basic" />
29
30   <meta name="keywords" content="<% thispage['uservalues']['site_keywords'] %>" />
31
32   <script type="text/javascript" src="<% path_to_root %>js/event-registration.js"></script>
33   <script type="text/javascript" src="<% path_to_root %>js/ie-note.js"></script>
34
35 </head>
36
37 <body>
38
39 <div id="header">
40   <p class="title">
41     <% thispage['uservalues']['site_title'] %>
42   </p>
43 </div>
44
45 <div id="content">
46   <% body %>
47 </div>
48
49 <hr class="textmode" />
50
51 <div id="bottom">
52
53   <p>This page was last modified <% modtime %>.</p>
54
55   <p>
56     Site design and content are copyright © Martin F. Krafft.
57     Please see <a href="<% path_to_root %>imprint.html">the imprint</a>.
58     <br />
59     I shall not be held liable for offending content in pages linking to or
60     linked from site, nor do I endorse their content unless I stated
61     otherwise.
62   </p>
63
64   <div id="colophon">
65     <p>
66       This webpage wouldn't be possible without <a
67       href="http://debian.org/">Debian</a>, <a
68       href="http://python.org/">Python</a>, <a
69       href="http://voidspace.org.uk/python/rest2web/">rest2web</a>, <a
70       href="http://httpd.apache.org/">Apache</a>, and other
71       excellent pieces of <a href="http://fsf.org/">Free Software</a>.
72     </p>
73     <p>
74       <a href="http://validator.w3.org/check/referer">
75         <img src="<% path_to_root %>img/xhtml1.png" alt="Valid XHTML 1.0 Strict" /></a>
76       <a href="http://jigsaw.w3.org/css-validator/check/referer/">
77         <img src="<% path_to_root %>img/css.png" alt="Valid CSS" /></a>
78     </p>
79   </div>
80 </div>
81
82 </body></html>