Skip to content

Commit 0970650

Browse files
authored
Merge pull request pythoncanarias#123 from pythoncanarias/add-PSF
Add psf
2 parents a4acfcf + a32912a commit 0970650

File tree

9 files changed

+327
-7
lines changed

9 files changed

+327
-7
lines changed

config/web.py

Lines changed: 25 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -413,14 +413,26 @@ def lookup_lang_name(lang_code):
413413
# NOTICIAS
414414

415415
NOTICIAS = [
416+
{
417+
'es': {
418+
"titulo": "Talleres!!",
419+
"fecha": "26/9/2023",
420+
"contenido": ("Ya puedes registrarte como asistente a los talleres de la Pycones como HumbleData https://forms.gle/Zb1HKZMxcnd7Sj9x9 o DjangoGirls https://forms.gle/Pq8iWqriMbnUUVWz8"),
421+
},
422+
'en': {
423+
"titulo": "Workshops!!",
424+
"fecha": "26/9/2023",
425+
"contenido": ("You can now register as an assistant to all the workshops at the Pycones like HumbleData https://forms.gle/Zb1HKZMxcnd7Sj9x9 or Django Girls https://forms.gle/Pq8iWqriMbnUUVWz8"),
426+
},
427+
},
416428
{
417429
'es': {
418430
"titulo": "Talleres Django Girls!!",
419431
"fecha": "8/9/2023",
420432
"contenido": ("Ya puedes registrarte como asistente al taller gratuito de Django Girls en Santa Cruz de Tenerife, inscripciones abiertas hasta el 23 de septiembre mas info en https://djangogirls.org/en/santacruz/"),
421433
},
422434
'en': {
423-
"titulo": "Django Girls Wrkshops!!",
435+
"titulo": "Django Girls Workshops!!",
424436
"fecha": "7/9/2023",
425437
"contenido": ("You can now register as an assistant to the free Django Girls workshop in Santa Cruz de Tenerife, registration open until September 23, more info at https://djangogirls.org/en/santacruz/"),
426438
},
@@ -853,6 +865,11 @@ def lookup_lang_name(lang_code):
853865

854866
"""
855867
TODO: Add in case we have de OK from jesus
868+
869+
870+
"""
871+
872+
CONTRIBUTORS = [
856873
{
857874
"name": "PCTT",
858875
"logo": "/theme/assets/images/sponsors/logo_pctt.png",
@@ -867,11 +884,12 @@ def lookup_lang_name(lang_code):
867884
"name": "Cabildo Tenerife",
868885
"logo": "/theme/assets/images/sponsors/logo_cabildo.png",
869886
"url": "https://www.tenerife.es/portalcabtfe/es/",
870-
}
871-
872-
"""
873-
874-
CONTRIBUTORS = [
887+
},
888+
{
889+
"name": "FDCAN",
890+
"logo": "/theme/assets/images/sponsors/logo_ecan.png",
891+
"url": "https://www3.gobiernodecanarias.org/noticias/tag/fdcan/",
892+
},
875893

876894
{
877895
"name": "Tenerifecb",
@@ -888,6 +906,7 @@ def lookup_lang_name(lang_code):
888906
"logo": "/theme/assets/images/sponsors/logo_lifer.svg",
889907
"url": "https://www.lifer.es/",
890908
},
909+
891910
]
892911

893912

11.8 KB
Loading
18.1 KB
Loading

theme/pycones23/static/assets/images/sponsors/logo_psf.svg

Lines changed: 142 additions & 0 deletions
Loading

theme/pycones23/templates/index.html

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,8 +131,17 @@ <h2 class="subtitle">Patrocinios</h1>
131131
</a>
132132
</div>
133133

134-
</div>
135134

135+
<!-- PSF -->
136+
<div class="card">
137+
<a href="https://www.python.org/psf-landing/">
138+
<figure class="sponsor-figure special">
139+
<img src="{{ SITEURL }}/theme/assets/images/sponsors/logo_psf.svg" alt="Logo psf" />
140+
</figure>
141+
</a>
142+
</div>
143+
144+
</div>
136145

137146

138147

11.8 KB
Loading
18.1 KB
Loading

theme/pycones23_en/static/assets/images/sponsors/logo_psf.svg

Lines changed: 142 additions & 0 deletions
Loading

theme/pycones23_en/templates/index.html

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,14 @@ <h2 class="subtitle">Sponsors</h1>
126126
</figure>
127127
</a>
128128
</div>
129+
<!-- PSF -->
130+
<div class="card">
131+
<a href="https://www.python.org/psf-landing/">
132+
<figure class="sponsor-figure special">
133+
<img src="{{ SITEURL }}/theme/assets/images/sponsors/logo_psf.png" alt="Logo PSF" />
134+
</figure>
135+
</a>
136+
</div>
129137

130138
</div>
131139

0 commit comments

Comments
 (0)