This repository was archived by the owner on Nov 14, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpelicanconf.py
69 lines (53 loc) · 1.97 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
#!/usr/bin/env python
# -*- coding: utf-8 -*- #
from __future__ import unicode_literals
AUTHOR = 'Python España'
SITENAME = 'Python España'
SITEURL = ''
SITESUBTITLE = 'Web de la Asociación'
SITEIMAGE = '/images/logo.png'
HIDE_AUTHORS = True
PATH = 'content'
TIMEZONE = 'Europe/Madrid'
DEFAULT_LANG = 'es'
# 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
# Icons are provided by https://fontawesome.com/icons (free version)
ICONS = (
('fab fa-twitter', 'https://twitter.com/python_es'),
('fab fa-github', 'https://github.com/python-spain'),
('fab fa-youtube', 'https://www.youtube.com/c/PythonEspa%C3%B1aOficial'),
('fas fa-globe-americas', 'http://planet.es.python.org'),
('fab fa-telegram', 'https://t.me/PythonEsp'),
('fab fa-discourse', 'https://comunidad.es.python.org/'),
('fab fa-discord', 'https://discord.gg/35E3Ph7Fez'),
)
DEFAULT_PAGINATION = 10
# Uncomment following line if you want document-relative URLs when developing
# RELATIVE_URLS = True
THEME = 'themes/pelican-alchemy/alchemy'
STATIC_PATHS = ['images', 'extra/CNAME']
EXTRA_PATH_METADATA = {'extra/CNAME': {'path': 'CNAME'},}
def open_absolute_urls_in_blank(attrs, new=False):
"""Detect abosulte URLs (i.e. those starting with the http(s) protocol
and force them to be open in a new window/tab."""
_href = attrs.get((None, 'href'), 'nada')
if _href.startswith('http://') or _href.startswith('https://'):
attrs[(None, 'target')] = '_blank'
return attrs
# Configure MARKDOWN extension according to:
# https://github.com/getpelican/pelican/wiki/Tips-n-Tricks
MARKDOWN = {
'extensions': ['mdx_linkify'],
'extension_configs': {
'markdown.extensions.extra': {},
'markdown.extensions.headerid': {},
'linkify': {'linkify_callbacks': [open_absolute_urls_in_blank]}
},
'output_format': 'html5'
}