diff options
-rw-r--r-- | content/extras/custom.css | 8 | ||||
-rw-r--r-- | pelicanconf.py | 4 |
2 files changed, 12 insertions, 0 deletions
diff --git a/content/extras/custom.css b/content/extras/custom.css index 7b1ac5b..08928ff 100644 --- a/content/extras/custom.css +++ b/content/extras/custom.css @@ -1,4 +1,12 @@ /* muted text is otherwise too dark */ .text-muted { color: #c8ccd0; +} + +.navbar { + font-size: 18px; +} + +.navbar-brand { + font-size: 20px; }
\ No newline at end of file diff --git a/pelicanconf.py b/pelicanconf.py index 9d3b19f..0c7eae2 100644 --- a/pelicanconf.py +++ b/pelicanconf.py @@ -50,6 +50,10 @@ PAGE_URL = '{slug}' PAGE_SAVE_AS = '{slug}.html' DISPLAY_PAGES_ON_MENU = False +MENUITEMS = (('About', './about.html'), + ('Research', './research.html'), + ('Notes', './notes.html'),) + # activate if there are more articles and tag page fixed DISPLAY_TAGS_ON_SIDEBAR = False |