forked from jokull/pelican-themes
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Nothing to do with http://en.wikipedia.org/wiki/BASIC
- Loading branch information
Skami18
committed
Jul 23, 2011
1 parent
a4ea283
commit 2303a8e
Showing
3 changed files
with
53 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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... | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{% extends "!simple/base.html" %} | ||
|
||
{% block head %} | ||
{{ super() }} | ||
<link rel="stylesheet" type="text/css" href="{{ SITEURL }}/theme/css/style.css" /> | ||
{% endblock %} |