commit 0d43d9e126376f53a4e939e4c35f45e80b09c979 Author: Richard Azia Date: Mon May 22 17:50:10 2023 +0200 initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57e1f63 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +publishconf.py diff --git a/pelicanconf.py b/pelicanconf.py new file mode 100644 index 0000000..cd0b825 --- /dev/null +++ b/pelicanconf.py @@ -0,0 +1,31 @@ +AUTHOR = 'Richard Azia' +SITENAME = 'Main.Vision.com' +SITEURL = '' + +PATH = 'content' + +TIMEZONE = 'Europe/Rome' + +DEFAULT_LANG = 'en' + +# Feed generation is usually not desired when developing +FEED_ALL_ATOM = None +CATEGORY_FEED_ATOM = None +TRANSLATION_FEED_ATOM = None +AUTHOR_FEED_ATOM = None +AUTHOR_FEED_RSS = None + +# Blogroll +LINKS = (('Pelican', 'https://getpelican.com/'), + ('Python.org', 'https://www.python.org/'), + ('Jinja2', 'https://palletsprojects.com/p/jinja/'), + ('You can modify those links in your config file', '#'),) + +# Social widget +SOCIAL = (('You can add links in your config file', '#'), + ('Another social link', '#'),) + +DEFAULT_PAGINATION = 3 + +# Uncomment following line if you want document-relative URLs when developing +#RELATIVE_URLS = True \ No newline at end of file