-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpelicanconf.py
More file actions
36 lines (26 loc) · 827 Bytes
/
pelicanconf.py
File metadata and controls
36 lines (26 loc) · 827 Bytes
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
#!/usr/bin/env python
AUTHOR = 'libgd.org'
SITENAME = 'GD Graphics Library'
SITEURL = ''
PATH = 'content'
TIMEZONE = 'Europe/Paris'
DEFAULT_LANG = 'en'
# Blogroll
LINKS = (
('Downloads', 'https://github.com/libgd/libgd/releases'),
('Issues', 'https://github.com/libgd/libgd/issues'),
('Mailing List', 'https://news-web.php.net/php.gd.devel/'),
# ('Wiki', 'https://github.com/libgd/libgd/wiki'),
)
# Social widget
SOCIAL = (#('You can add links in your config file', '#'),
('github', 'https://github.com/libgd/libgd'),
('gitter', 'https://gitter.im/libgd/libgd'),
)
PAGE_EXCLUDES = ['manuals']
ARTICLE_EXCLUDES = ['manuals']
STATIC_PATHS = ['manuals']
DEFAULT_PAGINATION = 10
READERS = {'html': None}
THEME = 'libgd'
CSS_FILE = 'libgd.css'