-
Notifications
You must be signed in to change notification settings - Fork 7
/
pelicanconf.py
72 lines (61 loc) · 2.32 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
#!/usr/bin/env python
# -*- coding: utf-8 -*- #
from __future__ import unicode_literals
AUTHOR = 'Python Brasil'
SITENAME = 'Python Brasil 2023'
SITEYEAR = 2023
SITEURL = ''
PATH = 'content'
SITEMAP = {
'format': 'xml',
'exclude': ['tags.html', 'categories.html', 'authors.html', 'archives.html']
}
ARTICLE_ORDER_BY = 'date'
TIMEZONE = 'America/Sao_Paulo'
DEFAULT_LANG = 'pt-br'
# Feed generation is usually not desired when developing
FEED_ALL_ATOM = 'feeds/all.atom.xml'
CATEGORY_FEED_ATOM = 'feeds/{slug}.atom.xml'
USE_FOLDER_AS_CATEGORY = True
# OLD_EVENTS
OLD_EVENTS = []
# OLD_EVENTS
MENU = [
('#inicio', 'Início', True),
('#evento', 'Sobre o evento', True),
('#keynotes', 'Keynotes', True),
('#programacao', 'Programação', True),
('#patrocinadores', 'Patrocinadores', True),
('#faq', 'FAQ', True),
('#footer', 'Site Map', True),
]
# Social widget
SOCIAL = {
'twitter':'https://twitter.com/pythonbrasil',
'instagram':'https://instagram.com/pythonbrasil',
'linkedin':'https://www.linkedin.com/company/apyb/',
'youtube':'https://www.youtube.com/c/pythonbrasiloficial',
'facebook':'https://www.facebook.com/pythonbrasil',
'flickr':'https://www.flickr.com/pythonbrasil',
'telegram':'https://t.me/pythonbrasil',
'email':'mailto:[email protected]',
}
DEFAULT_PAGINATION = False
SITE_META_KEYWORDS = f"Python Brasil, Python Brasil {SITEYEAR}, evento python, comunidade, evento, Programação, Python"
SITE_META_DESCRIPTION = "Python Brasil é o maior evento sobre linguagem de programação Python do Brasil. Feito pela comunidade para a comunidade, tem o objetivo de difundir a linguagem, promover a troca de experiências e manter a comunidade crescendo igualmente em público e impacto social."
# Uncomment following line if you want document-relative URLs when developing
#RELATIVE_URLS = True
EVENTO = {
'inscricao':'https://www.eventbrite.com.br/e/python-brasil-2023-registration-576537738897',
'submissao':'https://pretalx.com/python-brasil-2023/cfp',
'data_evento': 'DE 30 OUTUBRO A 05 NOVEMBRO',
'cidade': 'Caxias do Sul, RS',
'kit_divulgacao': '/theme/media_kits/frames.zip'
}
PLANOS = {
'pt_br':'/theme/media_kits/Python_Brasi_2023_PT_Br.pdf',
'en':'/theme/media_kits/Python_Brasil_2023_En.pdf',
}
GUIA = {
'pt_br':'/theme/guias/guia_da_cidade.pdf',
}