From 8b7e357ea6ed877a9ac241fe588fb01eeef0019c Mon Sep 17 00:00:00 2001 From: Pavel 'LEdoian' Turinsky Date: Sat, 30 Jan 2021 08:31:07 +0100 Subject: [PATCH] Add Makefile and basic config --- Makefile | 2 ++ pelicanconf.py | 38 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 40 insertions(+) create mode 100644 Makefile create mode 100644 pelicanconf.py diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..9a4739a --- /dev/null +++ b/Makefile @@ -0,0 +1,2 @@ +output: pelicanconf.py content pages + pelican content diff --git a/pelicanconf.py b/pelicanconf.py new file mode 100644 index 0000000..83f75cb --- /dev/null +++ b/pelicanconf.py @@ -0,0 +1,38 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- # + +import os +import sys +sys.path.append(os.curdir) + +AUTHOR = 'LEdoian' +SITENAME = 'LEdoian' +SITEURL = '' + +PATH = 'content' +THEME = 'test-theme' + +TIMEZONE = 'Europe/Prague' + +DEFAULT_LANG = 'en' + +# Feed generation is usually not desired when developing +FEED_ALL_ATOM = 'feeds/all.atom.xml' +CATEGORY_FEED_ATOM = 'feeds/{slug}.atom.xml' +TRANSLATION_FEED_ATOM = None +AUTHOR_FEED_ATOM = None +AUTHOR_FEED_RSS = None + +# Blogroll +LINKS = () + +# Social widget +SOCIAL = (('Mail', 'mailto:blog@pokemon.ledoian.cz'), + ) + +DEFAULT_PAGINATION = False + +# Uncomment following line if you want document-relative URLs when developing +RELATIVE_URLS = True + +DELETE_OUTPUT_DIRECTORY = True