Skip to content

Commit 3551b08

Browse files
authored
Merge pull request #72 from CloudNativeLinz/chore-add-slide-pages-and-speaker-name-on-page
[chore] Add speaker name display to slide layout and style adjustments
2 parents 9865d48 + 680ab09 commit 3551b08

File tree

5 files changed

+25
-0
lines changed

5 files changed

+25
-0
lines changed

_layouts/slide.html

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
---
44

55
<h1>{{ page.title }}</h1>
6+
<div class="speaker-name">{{ page.speaker }}</div>
67

78
<object data="{{ page.filename }}" width="100%" height="500" type="application/pdf"></object>
89

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
layout: slide
3+
date: 2025-03-01
4+
speaker: Sebastian Huber
5+
title: Laravel in K8s
6+
filename: /slides/2025-03/laravel_in_k8s_huber.pdf
7+
permalink: /slides/2025-03-laravel_in_k8s_huber
8+
---
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
layout: slide
3+
date: 2025-03-01
4+
speaker: Florian Arthofer
5+
title: You Suck at Shell Scripting
6+
filename: /slides/2025-03/You_Suck_at_Shell_Scripting.pdf
7+
permalink: /slides/2025-03-You_Suck_at_Shell_Scripting
8+
---

assets/style.scss

+8
Original file line numberDiff line numberDiff line change
@@ -1246,6 +1246,14 @@ Modules - reusable parts of our design
12461246
padding-left: 0;
12471247
}
12481248

1249+
.speaker-name {
1250+
color: #727171fb;
1251+
font-size: 0.9em;
1252+
margin-bottom: 20px;
1253+
text-align: center;
1254+
margin-top: -20px;
1255+
}
1256+
12491257
// Settled on moving the import of syntax highlighting to the bottom of the CSS
12501258
// ... Otherwise it really bloats up the top of the CSS file and makes it difficult to find the start
12511259
//@import "highlights";

0 commit comments

Comments
 (0)