mirror of
https://github.com/almet/notmyidea.git
synced 2025-04-28 11:32:39 +02:00
30 lines
788 B
Python
30 lines
788 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
PATH = "content"
|
|
AUTHOR = u'Alexis Métaireau'
|
|
SITENAME = u"Carnets Web"
|
|
THEME = "pelicanyan"
|
|
# THEME = "theme"
|
|
CSS_FILE = "wide.css"
|
|
DISQUS_SITENAME = 'notmyidea'
|
|
STATIC_PATHS = ['static']
|
|
|
|
SITEURL = ''
|
|
RELATIVE_URLS = True
|
|
|
|
TIMEZONE = "Europe/Paris"
|
|
LOCALE = "fr_FR.utf8"
|
|
|
|
DEFAULT_DATE_FORMAT = ('%d %B %Y')
|
|
LINKS = [
|
|
('Brasserie du Vieux Singe', 'https://www.vieuxsinge.com'),
|
|
('A propos', 'http://blog.notmyidea.org/pages/about.html'),
|
|
('Messages courts', 'https://twitter.com/ametaireau'),
|
|
('Code', 'https://github.com/almet'),
|
|
]
|
|
|
|
PIWIK_SERVER_URL = "//tracker.notmyidea.org/"
|
|
FIREFOX_BOOKMARKS_PATH = '/home/alexis/.mozilla/firefox/fymmscw3.default/bookmarkbackups/'
|
|
PIWIK_SITE_ID = 3
|
|
PLUGIN_PATHS = ['.']
|
|
#PLUGINS = ['firefox_bookmarks', ]
|