diff --git a/_data/insights-videos.yaml b/_data/insights-videos.yaml index 199569eb72..e9b5e9b797 100644 --- a/_data/insights-videos.yaml +++ b/_data/insights-videos.yaml @@ -1,13 +1,18 @@ +#titles for page + sectiontitle: "Upcoming Podcast" socialdescription: "View the Podcast on these platforms" futureheadline: "Scheduled Podcasts" -futurevideos: +# Next upcoming session (update weekly) +nextsessiontitle: "EPISODE #214: Quarkus and build reproducibility: are we there yet?" +nextsessiondate: "2025-08-04T13:00Z" +nextsessionguest: "Guillaume Smet" -- title: "No Session - Holidays" - link: - date: "July 28, 2025" - authors: "None" + +# upcoming session list (update weekly) + +futurevideos: - title: "EPISODE #214: Quarkus and build reproducibility: are we there yet?" link: @@ -24,10 +29,10 @@ futurevideos: date: "August 18, 2025" authors: "None" -- title: "EPISODE #216: To Be Scheduled" +- title: "EPISODE #216: What's new with Leyden" link: date: "August 25, 2025" - authors: "To Be Announced" + authors: "Andrew Dinn" - title: "No Session - Holidays" link: @@ -55,7 +60,7 @@ futurevideos: authors: "Willem Jan Glerum" - +# past session list (move last upcoming to this list weekly) pastheadline: "Archived Podcast Videos" diff --git a/_includes/insights-band.html b/_includes/insights-band.html index 630dcac083..277a1c4289 100644 --- a/_includes/insights-band.html +++ b/_includes/insights-band.html @@ -1,26 +1,30 @@ -
+

{{ site.data.insights-videos.sectiontitle }}

-
{{ site.data.insights-videos.sectionsubhead }}
-
+
-
+
-

{{ site.data.insights-videos.socialdescription }}

+

Join us for our next upcoming session

+
{{ site.data.insights-videos.nextsessiontitle }}
+

Special Guest: {{ site.data.insights-videos.nextsessionguest }}

+

+ +

Have a topic idea or want to propose a guest? Add your suggestion to our github issues with the label of "Insights".

+ +
{{ site.data.insights-videos.socialdescription }}
    -
  • -
  • -
  • -
  • -
- +
  • +
  • +
  • +
  • + +
    diff --git a/_layouts/base.html b/_layouts/base.html index 6e8692c5f6..524341c246 100755 --- a/_layouts/base.html +++ b/_layouts/base.html @@ -105,6 +105,7 @@ + diff --git a/_sass/quarkus.scss b/_sass/quarkus.scss index 12f2067b4d..4da84ccaaa 100644 --- a/_sass/quarkus.scss +++ b/_sass/quarkus.scss @@ -782,10 +782,19 @@ ol.bibliography li { // Insights page .streamingiconblock { - margin: 50px auto; + margin: 0px auto; text-align: center; + @media screen and (max-width: 768px) { + margin-top: 50px; + } + h4 { + margin-top: 0px !important; + padding-top: 0px; +} + +h5 { font-weight: 800; } diff --git a/assets/javascript/time.js b/assets/javascript/time.js new file mode 100644 index 0000000000..c2785074e4 --- /dev/null +++ b/assets/javascript/time.js @@ -0,0 +1,21 @@ + // Option 1: Get from a data attribute + const utcDateString = document.getElementById('convertedTime').dataset.utc; + + // Convert to user's local date and time + const localDate = new Date(utcDateString); + + // Format the output + const options = { + weekday: 'long', + year: 'numeric', + month: 'long', + day: 'numeric', + hour: '2-digit', + minute: '2-digit', + timeZoneName: 'short' + }; + + const localDateTimeString = localDate.toLocaleString(undefined, options); + + // Set the readable local date as content + document.getElementById("convertedTime").textContent = `Date & Time: ${localDateTimeString}`; \ No newline at end of file