Skip to content

Commit

Permalink
Merge pull request #111 from pythoncanarias/update-organization
Browse files Browse the repository at this point in the history
Update organization
  • Loading branch information
jata84 authored Aug 29, 2023
2 parents eb8f837 + 4a0e597 commit dc84304
Show file tree
Hide file tree
Showing 15 changed files with 67 additions and 5 deletions.
25 changes: 25 additions & 0 deletions config/web.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,31 @@ def lookup_lang_name(lang_code):
TITLE = "PyConES 2023"


# PARTNERS
PARTNERS=[
{
"name":"AdaLovers",
"url":"https://adalovedev.es/",
"image":"adalovers.png",
},
{
"name":"Python España",
"url":"https://es.python.org/",
"image":"pythonesp.png",
},
{
"name":"Python Canarias",
"url":"https://pythoncanarias.es/",
"image":"pythoncanarias.png",
},
{
"name":"PyLadies",
"url":"https://twitter.com/PyLadiesES",
"image":"pyladies.png",
}
]


# EDICIONES PASADAS
PAST_EDITIONS = [
{
Expand Down
4 changes: 2 additions & 2 deletions content/organizacion-en.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ save_as: organizacion/index.html

The 2023 edition of PyConES will be possible thanks to many volunteers who come
from technological communities such as
[Python Canarias](https://pythoncanarias.es/) or
[Python España](https://es.python.org/), among others:
[Python Canarias](https://pythoncanarias.es/),
[Python España](https://es.python.org/), [Ada Lovers](https://adalovedev.es/), [PyLadies España](https://twitter.com/PyLadiesES) among others:
4 changes: 2 additions & 2 deletions content/organizacion-es.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ save_as: organizacion/index.html

La edición 2023 de la PyConES será posible gracias a muchas personas
voluntarias que provienen de comunidades tecnológicas como
[Python Canarias](https://pythoncanarias.es/) o
[Python España](https://es.python.org/"), entre otras:
[Python Canarias](https://pythoncanarias.es/),
[Python España](https://es.python.org/), [Ada Lovers](https://adalovedev.es/), [PyLadies España](https://twitter.com/PyLadiesES) entre otras:
6 changes: 6 additions & 0 deletions theme/pycones23/static/assets/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -1217,6 +1217,12 @@ details p {
margin: 5px;
}

.organizer-figure {
width:155px;
margin: 5px;
height:100px;
}

.special {
margin: 0;
}
Expand Down
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.
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.
13 changes: 13 additions & 0 deletions theme/pycones23/templates/lista-organizacion.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
<div class="special-grid">

{% for partner in PARTNERS %}
<div class="card">
<a href="{{partner.url}}">
<figure class="organizer-figure special">
<img src="{{ SITEURL }}/theme/assets/images/organization/{{partner.image}}" alt="{{partner.name}}" />
</figure>
</a>
</div>
{% endfor %}
</div>

<div class="list has-visible-pointer-controls has-hoverable-list-items">
{% for persona in ORG %}
<div class="list-item">
Expand Down
5 changes: 5 additions & 0 deletions theme/pycones23_en/static/assets/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -1217,6 +1217,11 @@ details p {
margin: 5px;
}

.organizer-figure {
width:155px;
margin: 5px;
height:100px;
}
.special {
margin: 0;
}
Expand Down
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.
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.
15 changes: 14 additions & 1 deletion theme/pycones23_en/templates/lista-organizacion.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,17 @@
<div class="list has-visible-pointer-controls has-hoverable-list-items">
<div class="special-grid">

{% for partner in PARTNERS %}
<div class="card">
<a href="{{partner.url}}">
<figure class="organizer-figure special">
<img src="{{ SITEURL }}/theme/assets/images/organization/{{partner.image}}" alt="{{partner.name}}" />
</figure>
</a>
</div>
{% endfor %}
</div>

<div class="list has-visible-pointer-controls has-hoverable-list-items">
{% for persona in ORG %}
<div class="list-item">
<div class="list-item-image">
Expand Down

0 comments on commit dc84304

Please sign in to comment.