first commit
Some checks failed
Build / build-deploy (push) Failing after 23s

This commit is contained in:
Stephan Hadan 2025-01-27 02:54:15 +01:00
commit c7377979ad
37 changed files with 5061 additions and 0 deletions

45
pelicanconf.py Normal file
View file

@ -0,0 +1,45 @@
AUTHOR = 'Stephan Hadan'
DESCRIPTION = ''
SITENAME = 'News @ Hadan IT'
SITEURL = 'https://blog.hadan-it.com'
SITEIMAGE = ''
PATH = 'content'
OUTPUT_PATH = 'output'
TIMEZONE = 'Europe/Berlin'
STARTYEAR = '2025'
# comment CURRENTYEAR out if it's the same as STARTYEAR
#CURRENTYEAR = date.today().year
DEFAULT_LANG = 'de'
# 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
DELETE_OUTPUT_DIRECTORY = True
THEME = 'themes/business'
# 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 = 10
# Uncomment following line if you want document-relative URLs when developing
RELATIVE_URLS = True