blog.notmyidea.org/pelicanconf.py
Alexis Métaireau cbba74387d Refactored and cleaned up project
It includes these major modifications:
- Updated and modified content on 'projets.md'.
- Realigned 'base.html' in mnmlist/templates for better readability.
- Configured 'pelicanconf.py' for better project execution.
- Removed old theme directory
2023-09-12 16:44:46 +02:00

28 lines
480 B
Python

# -*- coding: utf-8 -*-
PATH = "content"
AUTHOR = u""
SITENAME = u"Alexis Métaireau"
THEME = "mnmlist"
DISQUS_SITENAME = "notmyidea"
DEFAULT_PAGINATION = 3
STATIC_PATHS = ["images", "docs"]
SITEURL = ""
RELATIVE_URLS = True
TIMEZONE = "Europe/Paris"
LOCALE = "fr_FR"
DEFAULT_DATE_FORMAT = "%d %B %Y"
LINKS = []
PLUGIN_PATHS = ["."]
PLUGINS = [
"simplereader",
]
CACHE_OUTPUT_DIRECTORY = "cache"
CACHE_DOMAIN = "/cache/"
TYPOGRIFY = True
INDEX_SAVE_AS = "articles.html"