-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpelicanconf.py
55 lines (43 loc) · 1.46 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
#!/usr/bin/env python
# -*- coding: utf-8 -*- #
from __future__ import unicode_literals
from decouple import config
import os, sys
SITENAME = 'Python Sul - 2025'
SITEYEAR = 2025
SITEURL = config('SITE_URL', default='')
PATH = os.path.join(os.getcwd(), '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'
# OLD_EVENTS
OLD_EVENTS = (
('2024','/2024'),
('2023','/2023'),
('2021','/2021'),
)
MENU = (
('#intro','Início', True),
('#about','Sobre', False),
('#keynotes','Keynotes', False),
('#c4p','Cronograma', False),
('#location', 'Local', False),
('#sponsorship','Patrocínio', False),
('#code-conduct','Código de Conduta', False),
)
# Social widget
SOCIAL = (
('instagram','https://www.instagram.com/pythonsul'),
('twitter', 'https://twitter.com/PythonSul'),
('telegram', 'https://t.me/PythonSulBR'),
('linkedin', 'https://www.linkedin.com/in/python-sul/'),
)
DEFAULT_PAGINATION = False
SITE_META_KEYWORDS = f"Python Sul {SITEYEAR}, evento python, python, pythonsul, comunidade python, python rio grande do sul, comunidade"
SITE_META_DESCRIPTION = "Evento da comunidade Python do sul do pais, com intuito de popularizar e disseminar o conhecimento da linguagem python"
# Uncomment following line if you want document-relative URLs when developing
# RELATIVE_URLS = True