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
16 changes: 16 additions & 0 deletions content/events/2026-barcelona/program.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
+++
Title = "Program"
Type = "event"
Description = "Program for devopsdays Barcelona 2026"
+++

<script type="text/javascript" src="https://talks.devopsdays.org/devopsdays-barcelona-2026/widgets/schedule.js"></script>
<pretalx-schedule event-url="https://talks.devopsdays.org/devopsdays-barcelona-2026/" locale="en" format="grid" style="--pretalx-clr-primary: #3aa57c"></pretalx-schedule>
<noscript>
<div class="pretalx-widget">
<div class="pretalx-widget-info-message">
JavaScript is disabled in your browser. To access our schedule without JavaScript,
please <a target="_blank" href="https://talks.devopsdays.org/devopsdays-barcelona-2026/schedule/">click here</a>.
</div>
</div>
</noscript>
3 changes: 1 addition & 2 deletions content/events/2026-barcelona/registration.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,5 @@ Description = "Registration for devopsdays Barcelona 2026"

<div style="width:100%; text-align:left;">

Embed registration iframe/link/etc.
</div></div>
{{< tix city="barcelona" year="2026" info="show" >}}
</div>
60 changes: 60 additions & 0 deletions content/events/2026-barcelona/speakers.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
+++
Title = "Speakers"
Type = "speakers"
Description = "Meet our speakers for DevOpsDays Barcelona 2026"
+++

<div id="speakers" class="row"></div>
<noscript>
<div class="pretalx-widget">
<div class="pretalx-widget-info-message">
JavaScript is disabled in your browser. To access our speaker list without JavaScript,
please <a target="_blank" href="https://talks.devopsdays.org/devopsdays-barcelona-2026/speaker/">click here</a>.
</div>
</div>
</noscript>

<script>
const ul = document.getElementById('speakers');
const list = document.createDocumentFragment();
const url = 'https://talks.devopsdays.org/api/events/devopsdays-barcelona-2026/speakers/?limit=50';

fetch(url)
.then((response) => {
return response.json();
})
.then((data) => {
let speakers = data.results;

speakers.map(function(speaker) {
let li = document.createElement('div');
li.className = `col-lg-3 col-md-6 p-3`;
let name = document.createElement('h3');
let pic = document.createElement('img');
let bio = document.createElement('details');
bio.className = `p-1`;
let talk = document.createElement('a');

name.innerHTML = `${speaker.name}`;
pic.src = speaker.avatar_url.length != 0 ? `${speaker.avatar_url}`: '/img/speaker-default.jpg';
pic.className = `speakers-page`;
bio.innerHTML = `<summary><b>About ${speaker.name}</b></summary><p>${speaker.biography ? `${speaker.biography}`: `Ipsum`}</p>`;
talk.setAttribute('href', speaker.submissions[0] ? `https://talks.devopsdays.org/devopsdays-barcelona-2026/talk/${speaker.submissions[0]}` : ``);
talk.setAttribute('target', '_blank');
talk.className = `btn btn-primary`;
talk.innerHTML = `Link to talk`;

li.appendChild(name);
li.appendChild(pic);
li.appendChild(bio);
li.appendChild(talk);
list.appendChild(li);
});
})
.catch(function(error) {
console.log(error);
})
.finally(() => {
ul.appendChild(list);
});
</script>
16 changes: 8 additions & 8 deletions content/events/2026-barcelona/welcome.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,14 +70,14 @@ Description = "DevOpsDays Barcelona 2026"
</div>
</div>

<!-- <div class = "row">
<div class = "row">
<div class = "col-md-2">
<strong>Register</strong>
</div>
<div class = "col-md-8">
{{< event_link page="registration" text="Register to attend the conference!" >}}
</div>
</div> -->
</div>

<!-- <div class = "row">
<div class = "col-md-2">
Expand All @@ -88,32 +88,32 @@ Description = "DevOpsDays Barcelona 2026"
</div>
</div> -->

<!-- <div class = "row">
<div class = "row">
<div class = "col-md-2">
<strong>Program</strong>
</div>
<div class = "col-md-8">
View the {{< event_link page="program" text="program." >}}
</div>
</div> -->
</div>

<!-- <div class = "row">
<div class = "row">
<div class = "col-md-2">
<strong>Speakers</strong>
</div>
<div class = "col-md-8">
Check out the {{< event_link page="speakers" text="speakers!" >}}
</div>
</div> -->
</div>

<!-- <div class = "row">
<div class = "row">
<div class = "col-md-2">
<strong>Sponsors</strong>
</div>
<div class = "col-md-8">
{{< event_link page="sponsor" text="Sponsor the conference!" >}}
</div>
</div> -->
</div>

<!---
<div class = "row">
Expand Down
10 changes: 5 additions & 5 deletions data/events/2026/barcelona/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,14 +47,14 @@ event_social_linkedin: "https://linkedin.com/company/devopsdays-bcn/" # Change t
#event_twitter: "devopsdays" # This will create a traditional "Follow" twitter button. Change this to the twitter handle for your event such as devopsdayschi or devopsdaysmsp.

nav_elements: # List of pages you want to show up in the navigation of your page.
- name: location
- name: location
- name: registration
- name: program
- name: speakers
- name: sponsor
- name: propose
# - name: propose # CFP is closed
- name: contact
- name: conduct
# - name: registration
# - name: program
# - name: speakers
# - name: example
# icon: "map-o" # This is a font-awesome icon that will display on small screens. Choose at http://fontawesome.io/icons/
# url: http://mycfp.com # The url setting is optional, and only if you want the navigation to link off-site
Expand Down
Loading