From adb21ffe5c9f8c3daf34db56fecceba815cfb014 Mon Sep 17 00:00:00 2001 From: Marko Semet Date: Sat, 11 May 2019 13:48:58 +0200 Subject: [PATCH] Fix config --- .gitignore | 4 +++- pelicanconf.py | 3 ++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index a979ee7..3469edc 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,3 @@ -/venv \ No newline at end of file +/venv +/output +*.pyc diff --git a/pelicanconf.py b/pelicanconf.py index 38398b4..4ab85f4 100644 --- a/pelicanconf.py +++ b/pelicanconf.py @@ -5,6 +5,7 @@ from __future__ import unicode_literals AUTHOR = 'Marko Semet' SITENAME = 'Marko10_000' SITEURL = '' +THEME = "./theme" PATH = 'content' @@ -32,4 +33,4 @@ SOCIAL = (('You can add links in your config file', '#'), DEFAULT_PAGINATION = False # Uncomment following line if you want document-relative URLs when developing -#RELATIVE_URLS = True \ No newline at end of file +RELATIVE_URLS = True