diff options
author | Skami18 <skami@skami-laptop.dyndns.org> | 2011-07-23 15:25:16 +0200 |
---|---|---|
committer | Skami18 <skami@skami-laptop.dyndns.org> | 2011-07-23 15:25:16 +0200 |
commit | 2303a8ee96639d0685bfafb1afe411cd22c4f27f (patch) | |
tree | bfe89de34f2c16bbc701986ad37348cfab197cac /basic | |
parent | a4ea2832a8a48ed63f38cf458b877d67d2c953da (diff) | |
download | pelican-themes-2303a8ee96639d0685bfafb1afe411cd22c4f27f.tar.gz |
Added the «Basic» theme
Nothing to do with http://en.wikipedia.org/wiki/BASIC
Diffstat (limited to 'basic')
-rw-r--r-- | basic/README.rst | 8 | ||||
-rw-r--r-- | basic/static/css/style.css | 39 | ||||
-rw-r--r-- | basic/templates/base.html | 6 |
3 files changed, 53 insertions, 0 deletions
diff --git a/basic/README.rst b/basic/README.rst new file mode 100644 index 0000000..826b484 --- /dev/null +++ b/basic/README.rst @@ -0,0 +1,8 @@ +Basic +##### + +This theme has been made for the documentation of the template inheritance feature of Pelican. + +He is usable, but only works with the last version of Pelican from the GIT repository... + + diff --git a/basic/static/css/style.css b/basic/static/css/style.css new file mode 100644 index 0000000..bf027af --- /dev/null +++ b/basic/static/css/style.css @@ -0,0 +1,39 @@ +body { + font-family: monospace; + font-size: 100%; + background-color: white; + color: #111; + width: 80%; + min-width: 400px; + min-height: 200px; + padding: 1em; + margin: 5% 10%; + border: thin solid gray; + border-radius: 5px; + display: block; +} + +a:link { color: blue; text-decoration: none; } +a:hover { color: blue; text-decoration: underline; } +a:visited { color: blue; } + +h1 a { color: inherit !important } +h2 a { color: inherit !important } +h3 a { color: inherit !important } +h4 a { color: inherit !important } +h5 a { color: inherit !important } +h6 a { color: inherit !important } + +#menu li { + display: inline; +} + +#post-list { + margin-bottom: 1em; + margin-top: 1em; +} + +pre { + margin: 2em 1em 2em 4em; +} + diff --git a/basic/templates/base.html b/basic/templates/base.html new file mode 100644 index 0000000..8055530 --- /dev/null +++ b/basic/templates/base.html @@ -0,0 +1,6 @@ +{% extends "!simple/base.html" %} + +{% block head %} +{{ super() }} + <link rel="stylesheet" type="text/css" href="{{ SITEURL }}/theme/css/style.css" /> +{% endblock %} |