mirror of
https://github.com/almet/notmyidea.git
synced 2025-04-28 11:32:39 +02:00
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
28 lines
480 B
Python
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"
|