-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpelicanconf_event_past_editions.py
48 lines (48 loc) · 1.43 KB
/
pelicanconf_event_past_editions.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
# -*- coding: utf-8 -*-
PAST_EDITIONS = [
{
"name": "PyConES 2013 - Madrid",
"logo": "/theme/images/past_editions/2013.png",
"url": "https://2013.es.pycon.org/",
},
{
"name": "PyConES 2014 - Zaragoza",
"logo": "/theme/images/past_editions/2014.png",
"url": "https://2014.es.pycon.org/",
},
{
"name": "PyConES 2015 - Valencia",
"logo": "/theme/images/past_editions/2015.png",
"url": "https://2015.es.pycon.org/",
},
{
"name": "PyConES 2016 - Almería",
"logo": "/theme/images/past_editions/2016.jpg",
"url": "https://2016.es.pycon.org/",
},
{
"name": "PyConES 2017 - Cáceres",
"logo": "/theme/images/past_editions/2017.png",
"url": "https://2017.es.pycon.org/",
},
{
"name": "PyConES 2018 - Málaga",
"logo": "/theme/images/past_editions/2018.png",
"url": "https://2018.es.pycon.org/",
},
{
"name": "PyConES 2019 - Alicante",
"logo": "/theme/images/past_editions/2019.png",
"url": "https://2019.es.pycon.org/",
},
{
"name": "PyConES 2020 - Pandemic Edition",
"logo": "/theme/images/past_editions/2020.png",
"url": "https://2020.es.pycon.org/",
},
{
"name": "PyConES 2021 - Vaccine Edition",
"logo": "/theme/images/past_editions/2021.png",
"url": "https://2021.es.pycon.org/",
},
]