aboutsummaryrefslogtreecommitdiffstats
path: root/misc/trac
diff options
context:
space:
mode:
authorZaran <zaran.krleza@gmail.com>2011-09-20 16:22:07 +0200
committerZaran <zaran.krleza@gmail.com>2011-09-20 16:22:07 +0200
commit688ba0108432bf6ea0b8bebfccc5bb2bbe285440 (patch)
treeed1e9a3536c4137c1f4c7e2e0f8804377d91d6a1 /misc/trac
parent0e314103b828bfa52d04d7c063353eba76ae7e9f (diff)
downloadalias-688ba0108432bf6ea0b8bebfccc5bb2bbe285440.tar.gz
Add trac template.
Diffstat (limited to 'misc/trac')
-rw-r--r--misc/trac/site.html12
-rw-r--r--misc/trac/style.css5
2 files changed, 17 insertions, 0 deletions
diff --git a/misc/trac/site.html b/misc/trac/site.html
new file mode 100644
index 0000000..ac04dc7
--- /dev/null
+++ b/misc/trac/site.html
@@ -0,0 +1,12 @@
+<html xmlns="http://www.w3.org/1999/xhtml"
+ xmlns:py="http://genshi.edgewall.org/"
+ py:strip="">
+ <head py:match="head" py:attrs="select('@*')">
+ ${select('*|comment()|text()')}
+ <link rel="stylesheet" type="text/css" href="${href.chrome('site/style.css')}" />
+ </head>
+
+ <body py:match="body" py:attrs="select('@*')">
+ ${select('*|text()')}
+ </body>
+</html>
diff --git a/misc/trac/style.css b/misc/trac/style.css
new file mode 100644
index 0000000..9594955
--- /dev/null
+++ b/misc/trac/style.css
@@ -0,0 +1,5 @@
+#main{
+width:75%;
+margin-left:auto;
+margin-right:auto;
+}