Skip to content
Merged
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
2 changes: 1 addition & 1 deletion layouts/partials/head.html
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,6 @@

{{ partial "stylesheets" . }}

<script src="{{ "js/countdown.js" | relURL }}" defer></script>
<script src="{{ "JS/countdown.js" | relURL }}" defer></script>

</head>
75 changes: 5 additions & 70 deletions layouts/partials/sponsor-card.html
Original file line number Diff line number Diff line change
@@ -1,67 +1,13 @@
<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 */
display: flex;
flex-direction: column;
justify-content: space-between;
background: #fff;
border-radius: 2rem;
overflow: hidden;
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
text-decoration: none;
color: inherit;
transition: transform 0.25s ease, box-shadow 0.25s ease;
opacity: 0;
transform: translateY(20px);
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);
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;
object-fit: contain;
}

/* Sponsor Button */
.sponsor-button {
display: inline-block;
text-align: center;
Expand All @@ -85,15 +31,4 @@
color: #fff;
background-color: #0071BC;
}

@keyframes fadeUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
</style>
Loading