-
Notifications
You must be signed in to change notification settings - Fork 0
/
pelicanconf.py
44 lines (32 loc) · 1020 Bytes
/
pelicanconf.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#!/usr/bin/env python
# -*- coding: utf-8 -*- #
from __future__ import unicode_literals
import site
from distutils.sysconfig import get_python_lib
AUTHOR = 'Therry van Neerven'
SITENAME = 'Therry'
SITEURL = ''
PATH = 'content'
TIMEZONE = 'Europe/Amsterdam'
DEFAULT_LANG = 'en'
LOCALE = 'en_US.utf8'
# 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
DEFAULT_PAGINATION = False
STATIC_PATHS = ['images', 'static', 'files']
EXTRA_PATH_METADATA = {'static/favicon.ico': {'path': 'favicon.ico'},}
ARTICLE_PATHS = ['articles']
PLUGIN_PATHS = [get_python_lib()]
PLUGINS = []
THEME = './theme/'
PROFILE_IMAGE = 'avatar.png'
BIO = ("My personal space on the www.")
SOCIAL = (
('envelope', 'mailto:therry.van.neerven@curiousbits.nl'),
('linkedin', 'https://nl.linkedin.com/in/therry-van-neerven-4130a267'),
('github', 'http://github.com/Ecno92'))
DISPLAY_PAGES_ON_MENU = True