Skip to content

Commit c140638

Browse files
authored
Merge pull request #302 from 3mdeb/events-page-rework
layouts/_default/events.html: add initial support for embeddable events
2 parents 8d9a145 + 5cb37bf commit c140638

File tree

11 files changed

+667
-144
lines changed

11 files changed

+667
-144
lines changed

.lycheeignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
themes/3mdeb/layouts/
22
http://localhost:1313/
3+
https://conf.3mdeb.com/
34
https://www.embedded-world.de/en/all-about-the-exhibition
45
.email
56
.sales
346 KB
Loading
261 KB
Loading
379 KB
Loading
608 KB
Loading
610 KB
Loading

content/elements.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ example.com (but not on Github, for example).
5151

5252
Some text to show that the reference links can follow later.
5353

54-
[arbitrary case-insensitive reference text]: https://www.themefisher.com
54+
[arbitrary case-insensitive reference text]: https://themefisher.com/
5555
[1]: https://gethugothemes.com
5656
[link text itself]: https://www.getjekyllthemes.com
5757

content/events.md

Lines changed: 463 additions & 104 deletions
Large diffs are not rendered by default.

content/training.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ trainings:
316316
* Hands-on exploitation and defensive management of UEFI Variables and Authenticated Variables.
317317
* Implement and validate UEFI Secure Boot through practical exercises.
318318
* Identify, analyze, and exploit vulnerabilities, including BootHole and BitPixie (CVE-2023-21563).
319-
* Dive into BootKitty, Hydrophobia, [[Feb 2025 GRUB2 CVEs](https://lists.gnu.org/archive/html/grub-devel/2025-02/msg00024.html)] and recent Gigabyte SMM vulnerabilities. (New)
319+
* Dive into BootKitty, Hydrophobia, [[Feb 2025 GRUB2 CVEs](https://web.archive.org/web/20251205111106/https://lists.gnu.org/archive/html/grub-devel/2025-02/msg00024.html)] and recent Gigabyte SMM vulnerabilities. (New)
320320
* Implement and circumvent Intel Root of Trust, with a detailed case study on CVE-2017-5705 and a practical demonstration.
321321
322322
audience: |

themes/3mdeb/assets/scss/_common.scss

Lines changed: 40 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -275,6 +275,19 @@ form {
275275
color: $color-primary !important;
276276
}
277277

278+
/* Logic for Show/Close button toggle */
279+
button[aria-expanded="false"] .text-close {
280+
display: none;
281+
}
282+
283+
button[aria-expanded="true"] .text-show {
284+
display: none;
285+
}
286+
287+
button[aria-expanded="true"] .text-close {
288+
display: inline;
289+
}
290+
278291
.accordion {
279292
--bs-accordion-active-btn-bg: $color-primary;
280293

@@ -321,19 +334,28 @@ form {
321334
background-color: $light;
322335

323336
.accordion-body {
324-
width: 90%;
337+
338+
width: 100%;
325339
margin: auto;
326-
padding: 50px 0px;
340+
padding: 50px 2rem;
327341

328342
@include tablet {
329-
padding: 20px 0px;
343+
padding: 20px 1.5rem;
330344
}
331345

332346
h3 {
347+
margin-top: 2rem;
348+
margin-bottom: 2rem;
333349
@include tablet {
334350
font-size: 1em;
335351
}
336352
}
353+
354+
p, li {
355+
font-size: 1.6rem;
356+
margin-top: 1.1rem;
357+
margin-bottom: 1.1rem;
358+
}
337359
}
338360
}
339361
}
@@ -545,3 +567,18 @@ select {
545567
object-fit: cover;
546568
}
547569
}
570+
571+
.pretalx-schedule-container {
572+
width: 100%;
573+
margin-top: 1.2rem;
574+
display: flex;
575+
overflow-x: hidden;
576+
justify-content: center;
577+
-webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
578+
}
579+
580+
.pretalx-schedule-container pretalx-schedule {
581+
width: 100%;
582+
max-width: 100%;
583+
display: block;
584+
}

0 commit comments

Comments
 (0)