diff --git a/_data/partners.yml b/_data/partners.yml index eabb422b..699457e3 100644 --- a/_data/partners.yml +++ b/_data/partners.yml @@ -1,5 +1,5 @@ - name: SurrealDB - background: "bg-1" + type: org link: "https://www.surrealdb.com/" description: |

SurrealDB is an innovative, multi-model, cloud-ready @@ -15,18 +15,21 @@ image: path: "/assets/images/partners/surrealdb.png" alt: SurrealDB logo + page_show: true - name: Jetbrains link: "https://www.jetbrains.com/" + type: org description: |

Jetbrains 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.

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.

image: path: "/assets/images/partners/jetbrains.png" alt: Jetbrains logo + page_show: true - name: Amazon - background: "bg-1" + type: org link: "http://amazon.com" description: |

Amazon is a global leader in e-commerce, redefining @@ -40,9 +43,10 @@ image: path: "/assets/images/partners/amazon.png" alt: Amazon logo + page_show: true - name: GitHub - background: "" + type: org link: "https://github.com" description: |

GitHub is the home for all developers, where you can @@ -52,20 +56,35 @@ image: path: "/assets/images/partners/github.png" alt: GitHub logo + page_show: true + +- name: O'Reilly + type: org + link: "https://www.oreilly.com/" + description: | +

O’Reilly’s mission is to change the world by sharing the knowledge of innovators.

+

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.

+ image: + path: "/assets/images/partners/oreilly.png" + alt: O’Reilly logo + page_show: true - name: Women In Tech Global Conference + type: event link: "https://www.womentech.net/en-es/node/102994" description: | We are thrilled to introduce our new partnership with Women In Tech Global Conference. The conference will bring women in tech, and allies together through an interactive platform with virtual and in-person sessions. image: path: "/assets/images/partners/WomenInTech.png" alt: Conference logo + page_show: false - name: Devoxx - UK - background: "bg-1" + type: event link: "https://www.devoxx.co.uk" description: | Ready to level up your dev skills and dive into the latest tech? Women Coding Community is thrilled to collaborate with Devoxx UK! Join expert practitioners from around the world as we explore Java, Cloud, AI, Data, Security, Architecture, Dev Culture, and more. image: path: "/assets/images/partners/devoxx.png" - alt: Conference logo \ No newline at end of file + alt: Conference logo + page_show: false diff --git a/_includes/partners-logo.html b/_includes/partners-logo.html index 132dba52..d23b2ef9 100644 --- a/_includes/partners-logo.html +++ b/_includes/partners-logo.html @@ -7,15 +7,28 @@
- {% assign partners = site.data.partners %} - {% for partner in partners %} -
-
- - {{ partner.image.alt }} - + {% assign org_partners = site.data.partners | where: "type", "org" %} + {% for partner in org_partners %} +
+
+ + {{ partner.image.alt }} + +
+
+ {% endfor %} +
+ +
+ {% assign event_partners = site.data.partners | where: "type", "event" %} + {% for partner in event_partners %} +
+
+ + {{ partner.image.alt }} + +
-
{% endfor %}
diff --git a/_sass/custom/_partners.scss b/_sass/custom/_partners.scss index e437e972..b686f415 100644 --- a/_sass/custom/_partners.scss +++ b/_sass/custom/_partners.scss @@ -18,7 +18,7 @@ .partners { .partner-img { - margin-top: 70px !important; + margin-bottom: 30px !important; } .hero-jetbrains { diff --git a/assets/images/partners/amazon.png b/assets/images/partners/amazon.png index ef835758..f898d2af 100644 Binary files a/assets/images/partners/amazon.png and b/assets/images/partners/amazon.png differ diff --git a/assets/images/partners/github.png b/assets/images/partners/github.png index fa17a6fa..540c7684 100644 Binary files a/assets/images/partners/github.png and b/assets/images/partners/github.png differ diff --git a/assets/images/partners/oreilly.png b/assets/images/partners/oreilly.png new file mode 100644 index 00000000..00241ecb Binary files /dev/null and b/assets/images/partners/oreilly.png differ diff --git a/partners.html b/partners.html index ade935e7..09f65abf 100644 --- a/partners.html +++ b/partners.html @@ -29,79 +29,25 @@

Contact Us

-
- -
-
- -
-
- -
-
- \ No newline at end of file + {% endif %} +{% endfor %}