diff options
author | Wolfgang Wiedmeyer <wolfgit@wiedmeyer.de> | 2016-07-29 17:42:34 +0200 |
---|---|---|
committer | Wolfgang Wiedmeyer <wolfgit@wiedmeyer.de> | 2016-07-29 17:42:34 +0200 |
commit | 0b11a6fb9585a9fd4cc5af10c280c009d96a4ceb (patch) | |
tree | 028bc137621fae21e90459f69f1bea54fffe9b34 | |
parent | 9185ee73b946b9b09f721d48bc09e8fadcf4d5a2 (diff) | |
download | blog-0b11a6fb9585a9fd4cc5af10c280c009d96a4ceb.zip blog-0b11a6fb9585a9fd4cc5af10c280c009d96a4ceb.tar.gz blog-0b11a6fb9585a9fd4cc5af10c280c009d96a4ceb.tar.bz2 |
adapt for Superhero Bootswatch theme
-rw-r--r-- | content/extras/custom.css | 4 | ||||
m--------- | pelican-themes | 0 | ||||
-rw-r--r-- | pelicanconf.py | 6 |
3 files changed, 10 insertions, 0 deletions
diff --git a/content/extras/custom.css b/content/extras/custom.css new file mode 100644 index 0000000..7b1ac5b --- /dev/null +++ b/content/extras/custom.css @@ -0,0 +1,4 @@ +/* muted text is otherwise too dark */ +.text-muted { + color: #c8ccd0; +}
\ No newline at end of file diff --git a/pelican-themes b/pelican-themes -Subproject 04ccbf694f4bf9ddf1d1c455c318da6d2054a51 +Subproject 9ec4ae03ea648b0f882edda44e5a6866bf100d9 diff --git a/pelicanconf.py b/pelicanconf.py index ff8133a..5cbbdf5 100644 --- a/pelicanconf.py +++ b/pelicanconf.py @@ -8,6 +8,11 @@ SITEURL = '' PATH = 'content' THEME = 'pelican-themes/pelican-bootstrap3' +BOOTSTRAP_THEME = 'superhero' +CUSTOM_CSS = 'static/custom.css' + +# ignore tipuesearch for now as it's not used +IGNORE_FILES = ['.#*', '*~', 'TODO', 'tipuesearch'] TIMEZONE = 'Europe/Berlin' @@ -29,6 +34,7 @@ STATIC_PATHS = [ ] EXTRA_PATH_METADATA = { 'extras/robots.txt': {'path': 'robots.txt'}, + 'extras/custom.css': {'path': 'static/custom.css'} } # only publish, if status is published |