-
Notifications
You must be signed in to change notification settings - Fork 0
/
pelicanconf.py
123 lines (92 loc) · 2.41 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
#!/usr/bin/env python
# -*- coding: utf-8 -*- #
from __future__ import unicode_literals
from collections import OrderedDict
AUTHOR = 'Dunderlabs'
SITENAME = '__labs__'
SITEURL = ''
TITLE_SITE = 'DunderLabs - Respirando inovação, expirando qualidade'
DISPLAY_PAGES_ON_MENU = True
PATH = 'content'
TIMEZONE = 'America/Fortaleza'
DEFAULT_LANG = 'pt'
DATE_FORMATS = {
'pt': '%d/%m/%Y',
}
# 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
# Blogroll
LINKS = (
('Pelican', 'http://getpelican.com/'),
('Python.org', 'http://python.org/'),
('Jinja2', 'http://jinja.pocoo.org/'),
)
# Social widget
SOCIAL = (
('twitter', 'https://twitter.com/dunderlabs'),
('github', 'https://github.com/dunderlabs'),
)
DEFAULT_PAGINATION = 10
MENUITEMS = (
('Pythonista Intermediário', 'pages/pythonista-intermediario'),
)
# Uncomment following line if you want document-relative URLs when developing
# RELATIVE_URLS = True
STATIC_PATHS = ['images', 'extra/CNAME']
EXTRA_PATH_METADATA = {'extra/CNAME': {'path': 'CNAME'}, }
THEME = 'theme'
PLUGIN_PATHS = [
'pelican-plugins'
]
PLUGINS = [
'gravatar',
'sitemap'
]
# Theme configs
COVER_IMG_URL = 'images/wallpaper.jpg'
TAGLINE = ''
DISQUS_SITENAME = 'dunderlabs'
# Custom configs
META_DESCRIPTION = '''
4 amigos com gostos igualmente parecidos e diferentes, reunindo
conhecimento, experiências e muitas dúvidas sobre: Front-End,
Python/Django, Linux, JS e etc. Devolvemos à comunidade o que em muitos
momentos ela nos ofereceu.
'''
META_KEYWORDS = [
'pug-pi', 'python', 'parnaiba', 'desenvolvimento', 'web', 'django'
]
GOOGLE_ANALYTICS = 'UA-72641866-1'
SITE_LOGO = '/images/logo1.jpg'
OPEN_GRAPH_IMAGE = "/images/logo1.jpg"
TWITTER = '@dunderlabs'
MEMBROS = OrderedDict((
('Patrick Mazulo', {
'email': '[email protected]',
'twitter': '@ericleribertson',
'github': 'mazulo'
}),
('Nilton Cesar', {
'email': '[email protected]',
'twitter': '@niltoncsr',
'github': 'niltoncsr'
})
))
SITEMAP = {
'format': 'xml',
'priorities': {
'articles': 1,
'pages': 0.8,
'indexes': 0.5
},
'exclude': ['tag/'],
'changefreqs': {
'articles': 'monthly',
'indexes': 'monthly',
'pages': 'monthly'
}
}