-
Notifications
You must be signed in to change notification settings - Fork 4
/
pelicanconf.py
256 lines (240 loc) · 7.1 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
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
#!/usr/bin/env python
# -*- coding: utf-8 -*- #
from __future__ import unicode_literals
import os
import sys
sys.path.append(os.curdir)
from baseconf import *
from collections import OrderedDict
# Configurações Base
SITENAME = u'PUG-SE'
AUTHOR = u'PUG-SE'
THEME = "themes/malt"
MALT_BASE_COLOR = "light-blue"
# Referências à Github
GITHUB_REPO = "http://github.com/pug-se/pug-se"
GITHUB_BRANCH = "master"
# Imagens
ARTICLE_BANNERS_FOLDER = "images/banners"
SITE_LOGO = "images/logo-pug-se.png"
SITE_LOGO_MOBILE = "images/logo-mobile.png"
# Home settings
WELCOME_TITLE = "Seja bem vindo ao {}".format(SITENAME)
WELCOME_TEXT = "Grupo de usuários da linguagem Python em Sergipe."
SITE_BACKGROUND_IMAGE = "images/banners/background.png"
FOOTER_ABOUT = "O PUG-SE é uma iniciativa " +\
"comunitária que tem o objetivo de reunir os desenvolvedores " +\
"e demais interessados na linguagem de programação Python " +\
"e em suas tecnologias associadas."
# Tema do Syntax Hightlight
PYGMENTS_STYLE = "perldoc"
# Navbar Links da Home Page
NAVBAR_HOME_LINKS = [
{
"title": "Comunidade",
"href": "comunidade",
},
{
"title": "Membros",
"href": "membros",
},
{
"title": "Blog",
"href": "blog",
},
{
"title": "Apoiadores",
"href": "apoiadores",
},
]
# Navbar Links do Blog
NAVBAR_BLOG_LINKS = NAVBAR_HOME_LINKS + [
{
"title": "Categorias",
"href": "blog/categorias",
},
{
"title": "Autores",
"href": "blog/autores",
},
{
"title": "Tags",
"href": "blog/tags",
},
]
# Links sociais do rodapé
SOCIAL_LINKS = (
{
"href": "https://telegram.me/joinchat/Acry5z79kyPZDqK4Bgu9FQ",
"icon": "fa-paper-plane",
"text": "Telegram",
},
{
"href": "https://www.meetup.com/pug-se",
"icon": "fa-meetup",
"text": "Meetup",
},
{
"href": "https://github.com/pug-se",
"icon": "fa-github",
"text": "GitHub",
},
{
"href": "https://www.facebook.com/groups/pugse",
"icon": "fa-facebook",
"text": "Facebook",
},
{
"href": "https://groups.google.com/forum/#!forum/pug-se",
"icon": "fa-envelope",
"text": "Mailing List",
},
)
# Links úteis
USEFUL_LINKS = (
{
"href": "http://wiki.python.org.br/",
"icon": "fa-globe",
"text": "Python Brasil",
},
{
"href": "https://python.org",
"icon": "fa-globe",
"text": "Python",
},
{
"href": "http://2017.pythonbrasil.org.br/",
"icon": "fa-globe",
"text": "Python Brasil 2017"
}
)
# Membros do Grupy
MEMBROS = OrderedDict((
("Rodrigo Amaral", {
"twitter": "@rodrigoamaral",
"github": "rodrigoamaral",
"site": {
"nome": "Rodrigo Amaral",
"href": "http://rodrigoamaral.net",
}
}),
("Erick Mendonça", {
"twitter": "@erickmagnus",
"github": "erickmendonca",
"site": {
"nome": "Erick Mendonça",
"href": "https://medium.com/@erickmendonca",
}
}),
("Gabriel Araujo", {
"email": "gabrielaraujof@outlook.com",
"twitter": "@gabrielfeear",
"github": "gabrielaraujof",
"site": {
"nome": "Gabriel Araujo",
"href": "http://blog.gbiel.com",
}
}),
("Wagner Macedo", {
"email": "wagnerluis1982@gmail.com",
"github": "wagnerluis1982",
}),
))
MALT_HOME = [
{
"color": "blue-grey lighten-5",
"title": "O que Fazemos?",
"items": [
{
"title": "Comunidade",
"icon": "fa-comments",
"text": "Nos comunicamos através de mailing " +\
"lists e redes sociais além de que são " +\
"promovidos encontros diversos, como encontros casuais, " +\
"<em>coding dojos</em> e palestras. ",
"buttons": [
{
"text": "Saiba Mais",
"href": "comunidade",
},
],
},
{
"title": "Membros",
"icon": "fa-users",
"text": "A comunidade PUG-SE 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": "Chamada de trabalhos",
"icon": "fa-puzzle-piece",
"text": "Estamos selecionando palestras e sugestões de atividades para " +\
"os próximos encontros do PUG-SE. Sinta-se convidado para " +\
"compartilhar com a nossa comunidade.",
"buttons": [
{
"text": "Submeta",
"href": "http://goo.gl/forms/rFvQ3BkSGQ",
},
],
},
]
},
]
MALT_COMUNITY = [
{
"color": "blue-grey lighten-5",
"items": [
{
"title": "Mídias sociais",
"text": "Siga o PUG-SE nas mídias sociais para ficar por dentro " +\
"dos encontros, novidades e postagens do nosso blog.",
"buttons": [
{
"text": "Meetup",
"icon": "fa-meetup",
"href": "https://www.meetup.com/pug-se/",
},
{
"text": "Facebook",
"icon": "fa-facebook",
"href": "http://www.facebook.com/groups/pugse/",
},
],
},
{
"title": "Telegram",
"text": "Possuimos também um grupo no Telegram. " +\
"Para participar é só clicar no link abaixo.",
"buttons": [
{
"text": "Telegram",
"icon": "fa-paper-plane",
"href": "https://telegram.me/joinchat/Acry5z79kyPZDqK4Bgu9FQ",
},
],
},
{
"title": "Lista de emails",
"text": "Para quem curte o bom e velho email, temos a lista " +\
"de discussão oficial do PUG-SE no google groups.",
"buttons": [
{
"text": "Lista",
"icon": "fa-envelope",
"href": "https://groups.google.com/forum/#!forum/pug-se",
},
],
},
]
},
]
from themes.malt.functions import *