Skip to content

Commit

Permalink
Merge pull request #123 from pythoncanarias/add-PSF
Browse files Browse the repository at this point in the history
Add psf
  • Loading branch information
jata84 authored Sep 26, 2023
2 parents a4acfcf + a32912a commit 0970650
Showing 9 changed files with 327 additions and 7 deletions.
31 changes: 25 additions & 6 deletions config/web.py
Original file line number Diff line number Diff line change
@@ -413,14 +413,26 @@ def lookup_lang_name(lang_code):
# NOTICIAS

NOTICIAS = [
{
'es': {
"titulo": "Talleres!!",
"fecha": "26/9/2023",
"contenido": ("Ya puedes registrarte como asistente a los talleres de la Pycones como HumbleData https://forms.gle/Zb1HKZMxcnd7Sj9x9 o DjangoGirls https://forms.gle/Pq8iWqriMbnUUVWz8"),
},
'en': {
"titulo": "Workshops!!",
"fecha": "26/9/2023",
"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"),
},
},
{
'es': {
"titulo": "Talleres Django Girls!!",
"fecha": "8/9/2023",
"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/"),
},
'en': {
"titulo": "Django Girls Wrkshops!!",
"titulo": "Django Girls Workshops!!",
"fecha": "7/9/2023",
"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/"),
},
@@ -853,6 +865,11 @@ def lookup_lang_name(lang_code):

"""
TODO: Add in case we have de OK from jesus
"""

CONTRIBUTORS = [
{
"name": "PCTT",
"logo": "/theme/assets/images/sponsors/logo_pctt.png",
@@ -867,11 +884,12 @@ def lookup_lang_name(lang_code):
"name": "Cabildo Tenerife",
"logo": "/theme/assets/images/sponsors/logo_cabildo.png",
"url": "https://www.tenerife.es/portalcabtfe/es/",
}
"""

CONTRIBUTORS = [
},
{
"name": "FDCAN",
"logo": "/theme/assets/images/sponsors/logo_ecan.png",
"url": "https://www3.gobiernodecanarias.org/noticias/tag/fdcan/",
},

{
"name": "Tenerifecb",
@@ -888,6 +906,7 @@ def lookup_lang_name(lang_code):
"logo": "/theme/assets/images/sponsors/logo_lifer.svg",
"url": "https://www.lifer.es/",
},

]


Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
142 changes: 142 additions & 0 deletions theme/pycones23/static/assets/images/sponsors/logo_psf.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 10 additions & 1 deletion theme/pycones23/templates/index.html
Original file line number Diff line number Diff line change
@@ -131,8 +131,17 @@ <h2 class="subtitle">Patrocinios</h1>
</a>
</div>

</div>

<!-- PSF -->
<div class="card">
<a href="https://www.python.org/psf-landing/">
<figure class="sponsor-figure special">
<img src="{{ SITEURL }}/theme/assets/images/sponsors/logo_psf.svg" alt="Logo psf" />
</figure>
</a>
</div>

</div>



Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
142 changes: 142 additions & 0 deletions theme/pycones23_en/static/assets/images/sponsors/logo_psf.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 8 additions & 0 deletions theme/pycones23_en/templates/index.html
Original file line number Diff line number Diff line change
@@ -126,6 +126,14 @@ <h2 class="subtitle">Sponsors</h1>
</figure>
</a>
</div>
<!-- PSF -->
<div class="card">
<a href="https://www.python.org/psf-landing/">
<figure class="sponsor-figure special">
<img src="{{ SITEURL }}/theme/assets/images/sponsors/logo_psf.png" alt="Logo PSF" />
</figure>
</a>
</div>

</div>

0 comments on commit 0970650

Please sign in to comment.