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
4 changes: 2 additions & 2 deletions content/events/2026-vilnius/location.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ Type = "event"
Description = "Location for DevOpsDays Vilnius 2026"
+++

Kablys 2.0 </a> will host DevOpsDays Vilnius 2026 from {{< event_start >}} - {{< event_end >}}.
Kablys </a> will host DevOpsDays Vilnius 2026 from {{< event_start >}} - {{< event_end >}}.

### <b>Event location:</b>
Kablys 2.0 <br>
Kablys <br>
[Kauno g. 5, 03214 Vilnius](https://maps.app.goo.gl/E9bdVJVRcpcRjJTs6)

<iframe src="https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d2307.059643721233!2d25.2773923!3d54.6733785!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x46dd946bc6860951%3A0x116a03813a81cb09!2sKablys%2C%20Vilnius%2C%2003214%20Vilniaus%20m.%20sav.%2C%20Lithuania!5e0!3m2!1sen!2sde!4v1778568085972!5m2!1sen!2sde" width="600" height="450" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
78 changes: 78 additions & 0 deletions content/events/2026-vilnius/speakers.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
+++
Title = "Speakers"
Type = "speakers"
Description = "Speakers for devopsdays Vilnius 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-vilnius-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-vilnius-2026/speakers/?page=1&page_size=50';

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

speakers.forEach(function(speaker) {
let li = document.createElement('div');
li.className = 'col-lg-3 col-md-6 p-3';

let name = document.createElement('h3');
name.textContent = speaker.name;

let pic = document.createElement('img');
pic.className = 'speakers-page';
pic.src =
(typeof speaker.avatar_url === 'string' && speaker.avatar_url.trim().length > 0)
? speaker.avatar_url
: '/img/speaker-default.jpg';

let bio = document.createElement('details');
bio.className = 'p-1';
bio.innerHTML =
`<summary><b>About ${speaker.name}</b></summary><p>${
speaker.biography
? speaker.biography
: `No biography found for ${speaker.name}. If you are ${speaker.name}, please email the organizers with a biography to be used here.`
}</p>`;

li.appendChild(name);
li.appendChild(pic);
li.appendChild(bio);

if (
Array.isArray(speaker.submissions) &&
speaker.submissions.length > 0 &&
speaker.submissions[0]
) {
let talk = document.createElement('a');
talk.href = `https://talks.devopsdays.org/devopsdays-vilnius-2026/talk/${speaker.submissions[0]}`;
talk.target = '_blank';
talk.className = 'btn btn-primary';
talk.textContent = 'Link to talk';
li.appendChild(talk);
}

list.appendChild(li);
});
})
.catch(function(error) {
console.error('Error fetching speaker data:', error);
})
.finally(() => {
ul.appendChild(list);
});
</script>

12 changes: 11 additions & 1 deletion content/events/2026-vilnius/welcome.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,17 @@ Description = "devopsdays Vilnius 2026"
<div class="d-flex p-2">
<a class="btn btn-secondary btn-block button-secondary"
style="background-color: #1bff9f; border-color: #1bff9f; color: #000000"
href="https://talks.devopsdays.org/devopsdays-vilnius-2026/cfp">Propose a talk</a>
href="https://fienta.com/devopsdays-vilnius-2026">Register</a>
</div>
<div class="d-flex p-2">
<a class="btn btn-secondary btn-block button-secondary"
style="background-color: #1bff9f; border-color: #1bff9f; color: #000000"
href="https://talks.devopsdays.org/devopsdays-vilnius-2026/schedule">Check Program</a>
</div>
<div class="d-flex p-2">
<a class="btn btn-secondary btn-block button-secondary"
style="background-color: #1bff9f; border-color: #1bff9f; color: #000000"
href="https://talks.devopsdays.org/devopsdays-vilnius-2026/cfp">Propose a Ignite talk</a>
</div>
<div class="d-flex p-2">
<a class="btn btn-secondary btn-block button-secondary"
Expand Down
10 changes: 6 additions & 4 deletions data/events/2026/vilnius/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,15 @@ cfp_link: "https://talks.devopsdays.org/devopsdays-vilnius-2026/cfp" #if you hav

# Location
coordinates: "554.673031, 25.277524" # The coordinates of your city. Get Latitude and Longitude of a Point: http://itouchmap.com/latlong.html
location: "Kablys 2.0 | Vilnius" # Defaults to city, but you can make it the venue name.
location: "Kablys | Vilnius" # Defaults to city, but you can make it the venue name.
location_address: "Kauno g. 5, 03214 Vilnius" #Optional - use the street address of your venue. This will show up on the welcome page if set.

nav_elements: # List of pages you want to show up in the navigation of your page.
- name: registration
url: "https://fienta.com/devopsdays-vilnius-2026"
# - name: speakers
# - name: program
# url: "https://talks.devopsdays.org/devopsdays-vilnius-2026/schedule/"
- name: speakers
- name: program
url: "https://talks.devopsdays.org/devopsdays-vilnius-2026/schedule/"
- name: propose
url: "https://talks.devopsdays.org/devopsdays-vilnius-2026/cfp"
- name: sponsor
Expand Down Expand Up @@ -125,3 +125,5 @@ sponsors:
level: platinum
- id: inkodus
level: silver
- id: surfshark
level: gold
Loading