Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions content/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,10 @@ draft: false
url="./speakers"
target="_blank" >}}

{{< button-link label="Get Tickets"
url="https://ticket.apidays.global/event/apidays-paris-2025/3cccd07f-acb2-466e-8d91-cb1f208ecf42?_gl=1*1i6mx1e*_gcl_au*MTY3OTY0ODcyNS4xNzUwMTA0MzA4"
target="_blank" >}}

{{< button-link label="Buy Tickets"
url="https://ticket.apidays.global/event/apidays-paris-2025/3cccd07f-acb2-466e-8d91-cb1f208ecf42/json-schema-conference-at-apidays-paris-2025" target="_blank">}}


</div>

Expand Down
18 changes: 14 additions & 4 deletions data/partner.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
platinum:
- name: Octue
homepage_url: https://www.octue.com/
logo: octue.svg
description: Octue helps scientists and engineers in energy and climate sectors work with data.
- name: Sourcemeta
homepage_url: https://www.sourcemeta.com/
logo: sourcemeta.svg
description: Sourcemeta provides tools and solutions for JSON Schema validation and management.
- name: .txt
homepage_url: https://txt.co/
logo: txt.svg
description: .txt is a cloud platform for document management and collaboration.

media:
- name: dev.events
homepage_url: https://dev.events/
logo: dev-events.png
description: dev.events is a platform for discovering and promoting tech events.
2 changes: 1 addition & 1 deletion data/sponsors.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ platinum:
items:
- name: Octue
homepage_url: https://www.octue.com/
logo: octue.svg
logo: octue.svg

gold:
items:
Expand Down
42 changes: 10 additions & 32 deletions layouts/partials/sponsor-card.html
Original file line number Diff line number Diff line change
@@ -1,25 +1,22 @@
<a class="sponsor-card" href="{{ .homepage_url }}" target="_blank" rel="noopener noreferrer">
<div class="sponsor-info">
<div class="sponsor-name">{{ .name }}</div>
{{ with .logo }}
<div class="sponsor-logo">
<img src="/images/sponsors/{{ . }}" alt="{{ $.name }}" />
</div>
{{ end }}
{{ with .logo }}
<div class="sponsor-logo">
<img src="/images/sponsors/{{ . }}" alt="{{ $.name }}" />
</div>

{{ end }}
</a>

<style>
/* Sponsor Card */
.sponsor-card {
width: 280px;
min-height: 150px; /* adjusts for logo */
min-height: 150px;
display: flex;
flex-direction: column;
justify-content: space-between;
justify-content: center;
align-items: center;
background: #fff;
border-radius: 2rem;
border-radius: 1rem;
overflow: hidden;
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
text-decoration: none;
Expand All @@ -30,35 +27,16 @@
animation: fadeUp 0.6s forwards;
cursor: pointer;
padding: 1.5rem;
position: relative;
text-align: center;
}

.sponsor-card:before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 2.5px;
background-color: #0071BC;
}

.sponsor-card:hover {
transform: translateY(-6px) scale(1.05);
transform: translateY(-6px);
box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.sponsor-name {
font-size: 1.3rem;
font-weight: 600;
color: #222;
margin-bottom: 0.5rem;
}

.sponsor-logo img {
max-width: 100%;
max-height: 80px;
max-height: 100px;
object-fit: contain;
}

Expand Down
142 changes: 106 additions & 36 deletions layouts/partners/list.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,11 @@ <h1 class="heading">Sponsors</h1>

<section>
<div style="text-align: center; margin: 4rem 0; font-size: 1.5rem;">
<p>We are looking forward to announcing our amazing sponsors for JSON Schema Conference 2025.</p>

<strong>2025 Sponsorship Tiers</strong>
<p>Support the JSON Schema Conference and be part of our community!</p>

<div style="margin: 2rem 0;">
<a href="https://opencollective.com/json-schema/events/the-json-schema-conference-2025-f7f367ce"
<a href="https://opencollective.com/json-schema/events/the-json-schema-conference-2025-f7f367ce"
style="display: inline-block; padding: 1rem 2rem; background: #005A9E; color: white; text-decoration: none; border-radius: 5px; font-weight: bold;">
Become a Sponsor
</a>
Expand All @@ -29,62 +30,131 @@ <h1 class="heading">Sponsors</h1>
</div>
</div>

<!-- 2025 Platinum Sponsors Section -->
{{ if gt (len .Site.Data.partner.platinum) 0 }}
<div style="text-align: center; margin: 4rem 0; font-size: 1.5rem;">
<strong>Previous Sponsors (2024)</strong>
<p>We extend our gratitude to the sponsors who supported JSON Schema Conference 2024.</p>
<strong>Our Platinum Sponsors (2025)</strong>
<p>Special thanks to our premium sponsors who make this conference possible.</p>
</div>

{{ if gt (len .Site.Data.sponsors.platinum.items) 0 }}
<div class="partners-group partner-platinum">
<h3 class="fancy"><strong><span>Platinum Sponsor</span></strong></h3>
<h3 class="fancy"><strong><span>Platinum</span></strong></h3>
<div class="carousel-container">
<div class="carousel-track">
{{ range .Site.Data.sponsors.platinum.items }}
{{ range .Site.Data.partner.platinum }}
<div class="carousel-item">
{{ partial "sponsor-card.html" . }}
<div class="sponsor-card-simple">
<a href="{{ .homepage_url }}" target="_blank" rel="noopener noreferrer">
<div class="sponsor-logo-section">
<img src="/images/partners/platinum/{{ .logo }}" alt="{{ .name }} Logo" />
</div>
<div class="sponsor-name-section">{{ .name }}</div>
</a>
</div>
</div>
{{ end }}
</div>
</div>
</div>
{{ end }}

{{/*ADD BELOW LINE CODE WHEN THERE ARE BRONZE AND GOLD SPONSORS*/}}
{{/* {{ if gt (len .Site.Data.sponsors.gold.items) 0 }}
<div class="partners-group partner-gold">
<h3 class="fancy"><span>Gold Sponsor</span></h3>
<div class="carousel-container">
<div class="carousel-track">
{{ range .Site.Data.sponsors.gold.items }}
<div class="carousel-item">
{{ partial "sponsor-card.html" . }}
</div>
{{ end }}
</div>
</div>
</div>
{{ end }} */}}

{{/* {{ if gt (len .Site.Data.sponsors.bronze.items) 0 }}
<div class="partners-group partner-bronze">
<h3 class="fancy"><span>Bronze Sponsor</span></h3>
<div class="carousel-container">
<div class="carousel-track">
{{ range .Site.Data.sponsors.bronze.items }}
<div class="carousel-item">
{{ partial "sponsor-card.html" . }}
<!-- Media Partners Section -->
{{ if gt (len .Site.Data.partner.media) 0 }}
<div style="text-align: center; margin: 4rem 0; font-size: 1.5rem;">
<strong>Media Partners (2025)</strong>
<p>Thanks to our media partners for helping spread the word!</p>
</div>

<div class="carousel-container">
<div class="carousel-track">
{{ range .Site.Data.partner.media }}
<div class="carousel-item">
<div class="sponsor-card-simple">
<a href="{{ .homepage_url }}" target="_blank" rel="noopener noreferrer">
<div class="sponsor-logo-section">
<img src="/images/media-partners/{{ .logo }}" alt="{{ .name }} Logo" />
</div>
<div class="sponsor-name-section">{{ .name }}</div>
</a>
</div>
{{ end }}
</div>
</div>
{{ end }}
</div>
{{ end }} */}}
</div>
{{ end }}

<div style="text-align: center; margin: 4rem 0; font-size: 1.5rem;">
<strong>Previous Sponsors (2024)</strong>
<p>We extend our gratitude to the sponsors who supported JSON Schema Conference 2024.</p>
</div>

{{ if gt (len .Site.Data.sponsors.platinum.items) 0 }}
<div style="text-align: center; margin: 2rem 0;">
<div class="sponsors-grid centered">
{{ range .Site.Data.sponsors.platinum.items }}
<div class="sponsor-card-simple">
<a href="{{ .homepage_url }}" target="_blank" rel="noopener noreferrer">
<div class="sponsor-logo-section">
<img src="/images/partners/platinum/{{ .logo }}" alt="{{ .name }} Logo" />
</div>
<div class="sponsor-name-section">{{ .name }}</div>
</a>
</div>
{{ end }}
</div>
</div>
{{ end }}

</section>

<style>
/* Sponsor Card Simple (for platinum & media partners) */
.sponsor-card-simple {
display: inline-block;
width: 200px;
border-radius: 0.8rem;
overflow: hidden;
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
transition: transform 0.25s ease, box-shadow 0.25s ease;
background: #fff;
}

.sponsor-card-simple:hover {
transform: translateY(-6px);
box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.sponsor-card-simple a {
display: flex;
flex-direction: column;
text-decoration: none;
color: inherit;
}

.sponsor-logo-section {
display: flex;
align-items: center;
justify-content: center;
padding: 1.5rem;
background: #f9f9f9;
min-height: 100px;
}

.sponsor-logo-section img {
max-width: 100%;
max-height: 80px;
object-fit: contain;
}

.sponsor-name-section {
padding: 0.8rem 1rem;
background-color: #f0f0f0;
font-weight: 700;
font-size: 0.95rem;
color: #222;
text-align: center;
}

/* Sponsorship Tiers Grid (2025) */
.sponsor-tiers {
display: grid;
Expand Down
2 changes: 1 addition & 1 deletion layouts/sessions/list.html
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ <h2 class="highlights-title">2024 Highlights</h2>
</div>
</div>
</div>
<a href="https://ticket.apidays.global/event/apidays-paris-2025/3cccd07f-acb2-466e-8d91-cb1f208ecf42?_gl=1*1i6mx1e*_gcl_au*MTY3OTY0ODcyNS4xNzUwMTA0MzA4"
<a href="https://ticket.apidays.global/event/apidays-paris-2025/3cccd07f-acb2-466e-8d91-cb1f208ecf42/json-schema-conference-at-apidays-paris-2025"
target="_blank"
rel="noopener">
<button >Get Your Ticket!</button>
Expand Down
Loading