diff options
author | Wolfgang Wiedmeyer <wolfgit@wiedmeyer.de> | 2016-07-29 22:13:08 +0200 |
---|---|---|
committer | Wolfgang Wiedmeyer <wolfgit@wiedmeyer.de> | 2016-07-29 22:13:08 +0200 |
commit | 051ff1dc5eb37c95f59de0a5d47ee2725f69946d (patch) | |
tree | dec74ef61d8062dd196ef7f1afd09599786118a5 | |
parent | 39b80382ac205719207f127e05d78b94fa6490e0 (diff) | |
download | blog-051ff1dc5eb37c95f59de0a5d47ee2725f69946d.zip blog-051ff1dc5eb37c95f59de0a5d47ee2725f69946d.tar.gz blog-051ff1dc5eb37c95f59de0a5d47ee2725f69946d.tar.bz2 |
add banner
-rw-r--r-- | content/extras/custom.css | 6 | ||||
-rw-r--r-- | content/images/banner.png | bin | 0 -> 1114060 bytes | |||
-rw-r--r-- | pelicanconf.py | 1 |
3 files changed, 6 insertions, 1 deletions
diff --git a/content/extras/custom.css b/content/extras/custom.css index 08928ff..d287284 100644 --- a/content/extras/custom.css +++ b/content/extras/custom.css @@ -9,4 +9,8 @@ .navbar-brand { font-size: 20px; -}
\ No newline at end of file +} + +#banner h1 { + font-size: 25px; +} diff --git a/content/images/banner.png b/content/images/banner.png Binary files differnew file mode 100644 index 0000000..60103f3 --- /dev/null +++ b/content/images/banner.png diff --git a/pelicanconf.py b/pelicanconf.py index 0c7eae2..1fff3b9 100644 --- a/pelicanconf.py +++ b/pelicanconf.py @@ -11,6 +11,7 @@ THEME = 'pelican-themes/pelican-bootstrap3' BOOTSTRAP_THEME = 'superhero' CUSTOM_CSS = 'static/custom.css' FAVICON = 'extras/favicon.ico' +BANNER = 'images/banner.png' # ignore tipuesearch for now as it's not used IGNORE_FILES = ['.#*', '*~', 'TODO', 'tipuesearch'] |