Skip to content

Commit 321233d

Browse files
Add new partner: Oreilly (#537)
1 parent 3006342 commit 321233d

File tree

7 files changed

+63
-85
lines changed

7 files changed

+63
-85
lines changed

_data/partners.yml

Lines changed: 24 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
- name: SurrealDB
2-
background: "bg-1"
2+
type: org
33
link: "https://www.surrealdb.com/"
44
description: |
55
<p><a href="http://surrealdb.com/" target="_blank">SurrealDB</a> is an innovative, multi-model, cloud-ready
@@ -15,18 +15,21 @@
1515
image:
1616
path: "/assets/images/partners/surrealdb.png"
1717
alt: SurrealDB logo
18+
page_show: true
1819

1920
- name: Jetbrains
2021
link: "https://www.jetbrains.com/"
22+
type: org
2123
description: |
2224
<p><a href="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>
2325
<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>
2426
image:
2527
path: "/assets/images/partners/jetbrains.png"
2628
alt: Jetbrains logo
29+
page_show: true
2730

2831
- name: Amazon
29-
background: "bg-1"
32+
type: org
3033
link: "http://amazon.com"
3134
description: |
3235
<p><a href="http://amazon.com" target="_blank">Amazon</a> is a global leader in e-commerce, redefining
@@ -40,9 +43,10 @@
4043
image:
4144
path: "/assets/images/partners/amazon.png"
4245
alt: Amazon logo
46+
page_show: true
4347

4448
- name: GitHub
45-
background: ""
49+
type: org
4650
link: "https://github.com"
4751
description: |
4852
<p><a href="https://github.com" target="_blank">GitHub</a> is the home for all developers, where you can
@@ -52,20 +56,35 @@
5256
image:
5357
path: "/assets/images/partners/github.png"
5458
alt: GitHub logo
59+
page_show: true
60+
61+
- name: O'Reilly
62+
type: org
63+
link: "https://www.oreilly.com/"
64+
description: |
65+
<p><a href="https://www.oreilly.com/" target="_blank">O’Reilly’s</a> mission is to change the world by sharing the knowledge of innovators. </p>
66+
<p>The learning platform offers exclusive live training, interactive learning, a certification experience, books, videos, and more, making it easier for customers to develop the expertise they need to get ahead.</p>
67+
image:
68+
path: "/assets/images/partners/oreilly.png"
69+
alt: O’Reilly logo
70+
page_show: true
5571

5672
- name: Women In Tech Global Conference
73+
type: event
5774
link: "https://www.womentech.net/en-es/node/102994"
5875
description: |
5976
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.
6077
image:
6178
path: "/assets/images/partners/WomenInTech.png"
6279
alt: Conference logo
80+
page_show: false
6381

6482
- name: Devoxx - UK
65-
background: "bg-1"
83+
type: event
6684
link: "https://www.devoxx.co.uk"
6785
description: |
6886
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.
6987
image:
7088
path: "/assets/images/partners/devoxx.png"
71-
alt: Conference logo
89+
alt: Conference logo
90+
page_show: false

_includes/partners-logo.html

Lines changed: 21 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,28 @@
77
</div>
88
<br>
99
<div class="row">
10-
{% assign partners = site.data.partners %}
11-
{% for partner in partners %}
12-
<div class="col-12 col-sm-6 col-md-2 col-lg-2 mb-2">
13-
<div class="card h-100">
14-
<a href="{{ partner.link }}" target="_blank">
15-
<img class="card-img-top" src="{{ partner.image.path }}" alt="{{ partner.image.alt }}">
16-
</a>
10+
{% assign org_partners = site.data.partners | where: "type", "org" %}
11+
{% for partner in org_partners %}
12+
<div class="col-12 col-sm-6 col-md-2 col-lg-2 mb-2">
13+
<div class="card h-100">
14+
<a href="{{ partner.link }}" target="_blank">
15+
<img class="card-img-top" src="{{ partner.image.path }}" alt="{{ partner.image.alt }}">
16+
</a>
17+
</div>
18+
</div>
19+
{% endfor %}
20+
</div>
21+
22+
<div class="row mb-3">
23+
{% assign event_partners = site.data.partners | where: "type", "event" %}
24+
{% for partner in event_partners %}
25+
<div class="col-12 col-sm-6 col-md-2 col-lg-2 mb-2">
26+
<div class="card h-100">
27+
<a href="{{ partner.link }}" target="_blank">
28+
<img class="card-img-top" src="{{ partner.image.path }}" alt="{{ partner.image.alt }}">
29+
</a>
30+
</div>
1731
</div>
18-
</div>
1932
{% endfor %}
2033
</div>
2134
</div>

_sass/custom/_partners.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
.partners {
2020
.partner-img {
21-
margin-top: 70px !important;
21+
margin-bottom: 30px !important;
2222
}
2323

2424
.hero-jetbrains {

assets/images/partners/amazon.png

46.5 KB
Loading

assets/images/partners/github.png

-16.5 KB
Loading

assets/images/partners/oreilly.png

2.01 KB
Loading

partners.html

Lines changed: 17 additions & 71 deletions
Original file line numberDiff line numberDiff line change
@@ -29,79 +29,25 @@ <h2>Contact Us</h2>
2929
</div>
3030
</section>
3131
</div>
32-
<div class="container mission bg-1 partners">
33-
<div class="row featured-content pt-5" id="surrealDB">
34-
<div class="row-description col-12 col-md-7 col-xl-8">
35-
<p><a href="http://surrealdb.com" target="_blank">SurrealDB</a> is an innovative, multi-model, cloud-ready
36-
database, suitable for modern and traditional
37-
applications. Its versatility, and focus on developer experience, along with the ability for
38-
deployment on cloud, on-premise, embedded, and in edge computing environments, allows developers and
39-
organizations to meet the needs of their applications, without needing to worry about scalability or
40-
keeping data consistent across multiple different database platforms.
41-
</p>
42-
<p>SurrealDB have also established the Women in Rust community, a meetup group where women can connect,
43-
collaborate, and grow their skills in Rust To learn more and get started with SurrealDB in just visit
44-
<a href="http://surrealdb.com" target="_blank">surrealdb.com</a>
45-
</p>
46-
</div>
47-
<div class="col-6 col-md-5 col-xl-4">
48-
<img class="partner-img" src="/assets/images/partners/surrealdb.png" alt="SurrealDB Logo" loading="eager"
49-
height="70">
50-
</div>
51-
</div>
52-
</div>
53-
<div class="container mission partners">
54-
<div class="row featured-content pt-5" id="jetbrains">
55-
<div class="col-12 col-md-5 col-xl-4">
56-
<img class="partner-img" src="/assets/images/partners/jetbrains.png" alt="Jetbrains Logo" loading="eager"
57-
width="350">
58-
</div>
59-
<div class="row-description col-12 col-md-7 col-xl-8">
60-
<p><a href="https://www.jetbrains.com/" target="_blank">Jetbrains</a> creates intelligent software
61-
development tools used by over 11.4 million professionals and 88
62-
Fortune Global Top 100 companies. Its lineup of more than 30 products includes IDEs for most programming
63-
languages and technologies, such as IntelliJ IDEA, PyCharm, and others, as well as products for team
64-
collaboration, like YouTrack and TeamCity.
65-
</p>
66-
<p>
67-
JetBrains is also known for creating the Kotlin programming
68-
language, a cross-platform language used by more than 5 million developers worldwide yearly and
69-
recommended
70-
by Google as the preferred language for Android development.
71-
</p>
72-
</div>
73-
</div>
74-
</div>
75-
<div class="container mission bg-1 partners">
76-
<div class="row featured-content pt-5" id="amazon">
77-
<div class="row-description col-12 col-md-7 col-xl-8">
78-
<p><a href="http://amazon.com" target="_blank">Amazon</a> is a global leader in e-commerce, redefining
79-
online shopping with its vast product selection,
80-
seamless customer experience, and advanced logistics network. With innovations like Amazon Prime,
81-
one-click purchasing, and a commitment to fast and reliable delivery, Amazon has transformed the way
82-
people shop worldwide.</p>
83-
<p>Beyond e-commerce, Amazon supports education and career growth through initiatives like Amazon Future
84-
Engineer, which provides opportunities for underrepresented groups in technology. To explore more about
85-
Amazon’s impact and services, visit <a href="http://amazon.com" target="_blank">amazon.com</a></p>
86-
</div>
87-
<div class="col-6 col-md-5 col-xl-4">
88-
<img class="partner-img" src="/assets/images/partners/amazon.png" alt="Amazon Logo" loading="eager"
89-
width="250">
90-
</div>
91-
</div>
92-
</div>
93-
<div class="container mission partners">
94-
<div class="row featured-content pt-5" id="github">
32+
33+
{% assign partners = site.data.partners %}
34+
35+
{% for partner in partners %}
36+
{% if partner.page_show %}
37+
{% assign is_even = forloop.index0 | modulo: 2 %}
38+
<div class="container mission {% if is_even == 0 %}bg-1{% endif %} partners">
39+
<div class="row featured-content pt-5 {% if is_even == 0 %}flex-row-reverse{% endif %} align-items-center" id="{{partner.name}}">
9540
<div class="col-12 col-md-5 col-xl-4">
96-
<img src="/assets/images/partners/github.png" alt="GitHub Logo" loading="eager" width="250">
41+
<img class="partner-img"
42+
src="{{partner.image.path}}"
43+
alt="{{partner.image.alt}}"
44+
width="250"
45+
loading="eager">
9746
</div>
9847
<div class="row-description col-12 col-md-7 col-xl-8">
99-
<p><a href="https://github.com" target="_blank">GitHub</a> is the home for all developers, where you can
100-
build, ship, scale and deliver your software securely.</p>
101-
<p>
102-
Over 150 million developers, including more than 90% of the Fortune 100 companies, use GitHub to
103-
collaborate and more than 77,000 organizations have adopted GitHub Copilot.
104-
</p>
48+
{{partner.description}}
10549
</div>
50+
</div>
10651
</div>
107-
</div>
52+
{% endif %}
53+
{% endfor %}

0 commit comments

Comments
 (0)