From ce835298cb4d7b64d412d90592629a7d33cbf20f Mon Sep 17 00:00:00 2001 From: Bastian Venthur Date: Sun, 25 Jul 2010 15:46:32 +0200 Subject: [PATCH] Added _layouts and _static dirs, with example files. --- _layouts/default.html | 27 +++++++++++++++++++++++++++ _static/style.css | 35 +++++++++++++++++++++++++++++++++++ 2 files changed, 62 insertions(+) create mode 100644 _layouts/default.html create mode 100644 _static/style.css diff --git a/_layouts/default.html b/_layouts/default.html new file mode 100644 index 0000000..97e8484 --- /dev/null +++ b/_layouts/default.html @@ -0,0 +1,27 @@ + + + + + $title + + + + + + +
+ $content +
+ + + + + diff --git a/_static/style.css b/_static/style.css new file mode 100644 index 0000000..1ac54a1 --- /dev/null +++ b/_static/style.css @@ -0,0 +1,35 @@ +body { + font-family: "trebuchet ms"; + margin: 0; +} + +#content { + margin-top: 20px; + margin-bottom: 30px; + position: relative; + margin: auto; + width: 600px; +} + +div#header, div#footer { + background: #AD0404; + height: 104px; + width: 940; + color: white; + margin: 0; + padding: 0; + position: relative; +} + +div#header_title { + color: white; + font-size: 34px; + background: transparent; +} + +div#header_tagline { + color: white: + font-size: 14px; + background: transparent; +} +