forked from grupydf/grupydf.github.io
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pelicanconf.py
222 lines (194 loc) · 5.67 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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
#!/usr/bin/env python
# -*- coding: utf-8 -*- #
from __future__ import unicode_literals
import os
import sys
sys.path.append(os.curdir)
from collections import OrderedDict
AUTHOR = u'PUG-PE'
SITENAME = u'PUG-PE'
SITEURL = ''
META_DESCRIPTION = '''O PUG-PE é uma comunidade de usuários (profissionais e
amadores) da linguagem Python, onde prezamos pela troca de
conhecimento, respeito mútuo e diversidade (tanto de opinião
quanto de tecnologias).'''
META_KEYWORDS = ['pug-pe', 'pugpe', 'python', 'pernambuco', 'desenvolvimento']
TIMEZONE = 'America/Recife'
THEME = 'themes/malt'
MALT_BASE_COLOR = 'green'
SITE_LOGO = 'images/logo/logo.png'
SITE_LOGO_MOBILE = 'images/logo/logo.png'
STATIC_PATHS = ['images', 'extra/CNAME']
EXTRA_PATH_METADATA = {'extra/CNAME': {'path': 'CNAME'},}
WELCOME_TITLE = 'Seja bem vindo ao {}!'.format(SITENAME)
WELCOME_TEXT = 'Grupo de usuários da linguagem Python de Pernambuco.'
SITE_BACKGROUND_IMAGE = 'images/foto-bairrorecife.jpg'
FOOTER_ABOUT = '''O PUG-PE é uma comunidade de usuários (profissionais e
amadores) da linguagem Python, onde prezamos pela troca de
conhecimento, respeito mútuo e diversidade (tanto de opinião
quanto de tecnologias).'''
DEFAULT_LANG = u'pt'
ARTICLE_URL = 'blog/{slug}'
ARTICLE_SAVE_AS = 'blog/{slug}/index.html'
PAGE_URL = '{slug}'
PAGE_SAVE_AS = '{slug}.html'
CATEGORIES_URL = 'blog/categorias'
CATEGORIES_SAVE_AS = 'blog/categorias/index.html'
CATEGORY_URL = 'blog/categorias/{slug}'
CATEGORY_SAVE_AS = 'blog/categorias/{slug}/index.html'
TAG_URL = 'blog/tags/{slug}'
TAG_SAVE_AS = 'blog/tags/{slug}/index.html'
TAGS_URL = 'blog/tags'
TAGS_SAVE_AS = 'blog/tags/index.html'
AUTHOR_URL = 'blog/autores/{slug}'
AUTHOR_SAVE_AS = 'blog/autores/{slug}/index.html'
AUTHORS_URL = 'blog/autores'
AUTHORS_SAVE_AS = 'blog/autores/index.html'
INDEX_SAVE_AS = "blog/index.html"
PAGINATION_PATTERNS = (
(1, '{base_name}/', '{base_name}/index.html'),
(2, '{base_name}/page/{number}/', '{base_name}/page/{number}/index.html'),
)
TRANSLATION_FEED_ATOM = None
TRANSLATION_FEED_RSS = None
AUTHOR_FEED_ATOM = None
AUTHOR_FEED_RSS = None
CATEGORY_FEED_ATOM = None
CATEGORY_FEED_RSS = None
DEFAULT_PAGINATION = False
PLUGIN_PATHS = ['./.plugins']
PLUGINS = [
'better_figures_and_images',
'sitemap',
]
RESPONSIVE_IMAGES = True
PYGMENTS_STYLE = "perldoc"
SITEMAP = {
'format': 'xml',
'priorities': {
'articles': 0.8,
'indexes': 0.2,
'pages': 0.7
},
'changefreqs': {
'articles': 'daily',
'indexes': 'daily',
'pages': 'monthly'
},
}
GITHUB_REPO = "http://github.com/pugpe/pugpe.github.io"
GITHUB_BRANCH = "pelican"
TWITTER = "@pugpe"
OPEN_GRAPH_IMAGE = "/images/logo/logo.png"
# Navbar Links
NAVBAR_HOME_LINKS = [
{
"title": "Comunidade",
"href": "comunidade",
},
{
"title": "Membros",
"href": "membros",
},
{
"title": "Blog",
"href": "blog",
},
]
NAVBAR_BLOG_LINKS = NAVBAR_HOME_LINKS + [
{
"title": "Categorias",
"href": "blog/categorias",
},
{
"title": "Autores",
"href": "blog/autores",
},
{
"title": "Tags",
"href": "blog/tags",
},
]
SOCIAL_LINKS = (
{
"href": "https://github.com/pugpe",
"icon": "fa-github",
"text": "GitHub",
},
{
"href": "https://twitter.com/pugpe",
"icon": "fa-twitter",
"text": "Twitter",
},
{
"href": "https://www.facebook.com/pugpe",
"icon": "fa-facebook",
"text": "Facebook",
},
{
"href": "https://groups.google.com/forum/#!forum/pugpe",
"icon": "fa-envelope",
"text": "Mailing List",
},
)
MEMBROS = OrderedDict((
("Gileno Filho", {
"email": "[email protected]",
"twitter": "@gilenofilho",
"github": "gileno"
}
),
("Rodrigo Lira", {
"email": "[email protected]",
"twitter": "@rodrigoclira",
"github": "rodrigoclira"
}
),
))
MALT_HOME = [
{
"color": "blue-grey lighten-5",
"title": "O que Fazemos?",
"items": [
{
"title": "Comunidade",
"icon": "fa-comments",
"text": "A comunidade do PUG-PE se comunica através de mailing " +\
"lists e na página do facebook mas frequentemente são " +\
"promovidos encontros diversos.",
"buttons": [
{
"text": "Saiba Mais",
"href": "comunidade",
},
],
},
{
"title": "Membros",
"icon": "fa-users",
"text": "A comunidade do PUG-PE, apesar de extensa possui alguns " +\
"colaboradores principais, responsáveis por organizar " +\
"eventos, manter a comunicação ativa, divulgar eventos, " +\
"redes sociais e etc. ",
"buttons": [
{
"text": "Conheça",
"href": "membros",
},
],
},
{
"title": "Projetos",
"icon": "fa-briefcase",
"text": "Os projetos do PUG-PE estão no seu github: @pugpe",
"buttons": [
{
"text": "Mais detalhes",
"href": "#",
},
],
},
]
},
]
from themes.malt.functions import *