Skip to content

Commit 8da2e58

Browse files
authored
Update Partners List (#414)
* Update partners logo and small style * Disable announcement for Python Study * Include new partners
1 parent 128a8ff commit 8da2e58

14 files changed

Lines changed: 311 additions & 208 deletions

File tree

_data/announcement.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
description: |
3131
Unlock the power of data analysis with Pandas, one of Python's most versatile libraries! This study group is designed for beginners and intermediate Python users who want to deepen their data skills.
3232
date: "2025"
33-
expiration: "20250330"
33+
expiration: "20250222"
3434
image:
3535
path: "https://secure.meetupstatic.com/photos/event/a/a/c/2/event_526003714.webp"
3636
alt: event image banner

_data/partners.yml

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
- name: SurrealDB
2+
background: "bg-1"
3+
link: "https://www.surrealdb.com/"
4+
description: |
5+
<p><a href="http://surrealdb.com" target="_blank">SurrealDB</a> is an innovative, multi-model, cloud-ready
6+
database, suitable for modern and traditional
7+
applications. Its versatility, and focus on developer experience, along with the ability for
8+
deployment on cloud, on-premise, embedded, and in edge computing environments, allows developers and
9+
organizations to meet the needs of their applications, without needing to worry about scalability or
10+
keeping data consistent across multiple different database platforms.</p>
11+
<p>SurrealDB have also established the Women in Rust community, a meetup group where women can connect,
12+
collaborate, and grow their skills in Rust To learn more and get started with SurrealDB in just visit
13+
<a href="http://surrealdb.com" target="_blank">surrealdb.com</a>
14+
</p>
15+
image:
16+
path: "/assets/images/partners/surrealdb.png"
17+
alt: SurrealDB logo
18+
19+
- name: Jetbrains
20+
link: "https://www.surrealdb.com/"
21+
description: |
22+
<p><a href="http://https://www.jetbrains.com/" target="_blank">Jetbrains</a> creates intelligent software development tools used by over 11.4 million professionals and 88 Fortune Global Top 100 companies. Its lineup of more than 30 products includes IDEs for most programming languages and technologies, such as IntelliJ IDEA, PyCharm, and others, as well as products for team collaboration, like YouTrack and TeamCity.</p>
23+
<p>JetBrains is also known for creating the Kotlin programming language, a cross-platform language used by more than 5 million developers worldwide yearly and recommended by Google as the preferred language for Android development.</p>
24+
image:
25+
path: "/assets/images/partners/jetbrains.png"
26+
alt: Jetbrains logo
27+
28+
- name: Amazon
29+
background: "bg-1"
30+
link: "http://amazon.com"
31+
description: |
32+
<p><a href="http://amazon.com" target="_blank">Amazon</a> is a global leader in e-commerce, redefining
33+
online shopping with its vast product selection,
34+
seamless customer experience, and advanced logistics network. With innovations like Amazon Prime,
35+
one-click purchasing, and a commitment to fast and reliable delivery, Amazon has transformed the way
36+
people shop worldwide.</p>
37+
<p>Beyond e-commerce, Amazon supports education and career growth through initiatives like Amazon Future
38+
Engineer, which provides opportunities for underrepresented groups in technology. To explore more about
39+
Amazon’s impact and services, visit <a href="http://amazon.com" target="_blank">amazon.com</a></p>
40+
image:
41+
path: "/assets/images/partners/amazon.png"
42+
alt: Amazon logo
43+
44+
- name: Women In Tech Global Conference
45+
link: "www.womentech.net/en-es/node/102994"
46+
description: |
47+
We are thrilled to introduce our new partnership with <a href="https://www.womentech.net/en-es/node/102994" target="_blank">Women In Tech Global Conference.</a> The conference will bring women in tech, and allies together through an interactive platform with virtual and in-person sessions.
48+
image:
49+
path: "/assets/images/partners/WomenInTech.png"
50+
alt: Conference logo
51+
52+
- name: Devoxx - UK
53+
background: "bg-1"
54+
link: "https://www.devoxx.co.uk"
55+
description: |
56+
Ready to level up your dev skills and dive into the latest tech? Women Coding Community is thrilled to collaborate with <a href="https://www.womentech.net/en-es/node/102994" target="_blank">Devoxx UK!</a> Join expert practitioners from around the world as we explore Java, Cloud, AI, Data, Security, Architecture, Dev Culture, and more.
57+
image:
58+
path: "/assets/images/partners/devoxx.png"
59+
alt: Conference logo

_includes/featured-announcements.html

Lines changed: 35 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -3,46 +3,47 @@
33

44
{% assign count = 0 %}
55
{% for announcement in announcements %}
6-
{% if announcement.expiration >= today %}
7-
{% assign count = count | plus: 1 %}
8-
{% endif %}
9-
{% endfor %}
6+
{% if announcement.expiration >= today %}
7+
{% assign count = count | plus: 1 %}
8+
{% endif %}
9+
{% endfor %}
1010

1111
{% if count > 0 %}
12-
<div class="container announcements">
13-
<div class="row featured-content">
14-
<div class="row-header">
15-
<h2>Announcements</h2>
16-
</div>
17-
<div class="row-content col-12">
18-
<div class="card-deck">
19-
{% for announcement in announcements %}
20-
{% if announcement.expiration >= today %}
21-
<div class="card-column col-12 col-lg-6">
22-
<article class="card-announcement card card-m">
23-
<div class="card-header">
24-
<div class="col-12 col-sm-9 col-lg-9">
25-
<div class="card-date">{{ announcement.date }}</div>
26-
<h3 class="card-title">{{ announcement.title }}</h3>
27-
</div>
28-
<div class="card-media col-12 col-sm-3 col-lg-3">
29-
<img src="{{ announcement.image.path }}" alt="{{ announcement.image.alt }}">
30-
</div>
31-
</div>
32-
<div class="card-body col-12">
33-
<p>{{ announcement.description }}</p>
34-
</div>
35-
{% if announcement.link %}
36-
<div class="card-footer col-12">
37-
<a href="{{ announcement.link.path }}" target="{{ announcement.link.target }}" class="btn btn-primary">{{announcement.link.title }}</a>
38-
</div>
39-
{% endif %}
40-
</article>
12+
<div class="container announcements bg-1">
13+
<div class="row featured-content">
14+
<div class="row-header">
15+
<h2>Announcements</h2>
16+
</div>
17+
<div class="row-content col-12">
18+
<div class="card-deck">
19+
{% for announcement in announcements %}
20+
{% if announcement.expiration >= today %}
21+
<div class="card-column col-12 col-lg-6">
22+
<article class="card-announcement card card-m">
23+
<div class="card-header">
24+
<div class="col-12 col-sm-9 col-lg-9">
25+
<div class="card-date">{{ announcement.date }}</div>
26+
<h3 class="card-title">{{ announcement.title }}</h3>
27+
</div>
28+
<div class="card-media col-12 col-sm-3 col-lg-3">
29+
<img src="{{ announcement.image.path }}" alt="{{ announcement.image.alt }}">
4130
</div>
31+
</div>
32+
<div class="card-body col-12">
33+
<p>{{ announcement.description }}</p>
34+
</div>
35+
{% if announcement.link %}
36+
<div class="card-footer col-12">
37+
<a href="{{ announcement.link.path }}" target="{{ announcement.link.target }}"
38+
class="btn btn-primary">{{announcement.link.title }}</a>
39+
</div>
4240
{% endif %}
43-
{% endfor %}
41+
</article>
4442
</div>
43+
{% endif %}
44+
{% endfor %}
4545
</div>
4646
</div>
4747
</div>
48+
</div>
4849
{% endif %}

_includes/partners-logo.html

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<div class="container">
2+
<div class="row partners-logo">
3+
<div class="row-content col-12">
4+
<div class="container">
5+
<div class="row">
6+
<div class="title"><small>Community Partners:</small></div>
7+
{% assign partners = site.data.partners %}
8+
{% for partner in partners %}
9+
<div class="col-12 col-sm-6 col-md-2 col-lg-2 mb-2">
10+
<div class="card h-100">
11+
<a href="{{ partner.link }}" target="_blank">
12+
<img class="card-img-top" src="{{ partner.image.path }}" alt="{{ partner.image.alt }}">
13+
</a>
14+
</div>
15+
</div>
16+
{% endfor %}
17+
</div>
18+
</div>
19+
</div>
20+
</div>
21+
</div>

_layouts/default.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
{% include page-header.html %}
1111
{{ content}}
1212
</main>
13+
{% include partners-logo.html %}
1314
{% include footer.html %}
1415
</body>
1516
</html>

0 commit comments

Comments
 (0)