Skip to content

Commit

Permalink
Add breakout sessions
Browse files Browse the repository at this point in the history
  • Loading branch information
mrego committed May 27, 2024
1 parent 6f8a0dd commit 64210a3
Show file tree
Hide file tree
Showing 16 changed files with 106 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .eleventy.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,11 @@ module.exports = function(eleventyConfig) {
linkify: true
}));

eleventyConfig.addCollection("breakoutAsc", (collection) =>
collection.getFilteredByTag("breakout").sort((a, b) => {
if (a.data.title > b.data.title) return 1;
else if (a.data.title < b.data.title) return -1;
else return 0;
})
);
}
6 changes: 6 additions & 0 deletions _content/breakout-sessions/compiling-javascript.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
layout: breakout
title: "Compiling JavaScript ahead of time"
issue: 33
---

6 changes: 6 additions & 0 deletions _content/breakout-sessions/javascript.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
layout: breakout
title: "JavaScript standardization"
issue: 25
---

6 changes: 6 additions & 0 deletions _content/breakout-sessions/new-feature-web-platform.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
layout: breakout
title: "How to build a new feature for the web platform — and make it a success with developers 2024"
issue: 24
---

6 changes: 6 additions & 0 deletions _content/breakout-sessions/servo.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
layout: breakout
title: "Servo"
issue: 28
---

6 changes: 6 additions & 0 deletions _content/breakout-sessions/standarization-across-layers.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
layout: breakout
title: "Standardization across layers: Experiences with HTML, JS and Unicode"
issue: 26
---

6 changes: 6 additions & 0 deletions _content/breakout-sessions/testing-accessibility.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
layout: breakout
title: "Testing OS-specific accessibility APIs in WPT - can it be done??"
issue: 30
---

6 changes: 6 additions & 0 deletions _content/breakout-sessions/trusted-types.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
layout: breakout
title: "Trusted Types and The Sanitizer API"
issue: 32
---

6 changes: 6 additions & 0 deletions _content/breakout-sessions/web-engines-rendering.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
layout: breakout
title: "Web Engines Rendering in Linux: sharing ideas and solutions"
issue: 26
---

6 changes: 6 additions & 0 deletions _content/breakout-sessions/webkit-sdk.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
layout: breakout
title: "Demoing the new WebKit Container SDK"
issue: 31
---

6 changes: 6 additions & 0 deletions _content/breakout-sessions/webkit-skia.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
layout: breakout
title: "WebKit and Skia"
issue: 36
---

6 changes: 6 additions & 0 deletions _content/breakout-sessions/wintercg.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
layout: breakout
title: "WinterCG"
issue: 29
---

6 changes: 6 additions & 0 deletions _content/breakout-sessions/wolvic.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
layout: breakout
title: "Wolvic: a browser for WebXR applications"
issue: 35
---

6 changes: 6 additions & 0 deletions _content/breakout-sessions/wpe-android.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
layout: breakout
title: "WPE-Android status update"
issue: 34
---

8 changes: 8 additions & 0 deletions _includes/breakout.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
layout: default
tags: breakout
permalink: false
---

<h3>{{ title }}</h3>

13 changes: 13 additions & 0 deletions index.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,19 @@ if ((dialog != null) && (dialog.tagName == "DIALOG")) {

</section>

<section id="breakout-sessions">

<div class="section-wrapper">

## Breakout Sessions

{% for breakout in collections.breakoutAsc | sort(attribute="data.title") %}* <a href="https://github.com/Igalia/webengineshackfest/issues/{{ breakout.data.issue }}">{{ breakout.data.title }}</a>
{% endfor %}

</div>

</section>

<section id="attendees">

<div class="section-wrapper">
Expand Down

0 comments on commit 64210a3

Please sign in to comment.