Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

content/JSJ Greenwood podcast appearance #297

Merged
merged 2 commits into from
Jun 14, 2024
Merged
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
8 changes: 8 additions & 0 deletions src/services/presentations/presentations-service.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@ class PresentationsService {
constructor() {
// add new presentations at the top, i.e. FIFO
this.presentations = [{
title: 'Embracing Web Standards',
abstract: `Owen introduces Greenwood, a project focused on leveraging web standards and simplifying web development. Throughout the episode,
they explore Greenwood's evolution, capabilities, and unique approach to application scaffolding and local development.
From the emphasis on HTML and web components to Greenwood's seamless integration with HTMX, they uncover the project's
vision to provide an onramp close to web standards.`,
video: 'https://www.youtube.com/embed/UV0QTv6qT0g',
date: '4/15/2024'
}, {
title: 'Web Components at the Edge',
abstract: `It's time for the web to have some fun! Together, let's look at how we can take
the Web Components we write for the web and push them all the way to the edge through server rendering,
Expand Down
1 change: 0 additions & 1 deletion src/services/presentations/presentations-service.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ describe('PresentationsService', () => {
presentations.map(presentation => {
expect(presentation.title).to.not.equal(undefined);
expect(presentation.abstract).to.not.equal(undefined);
expect(presentation.link).to.not.equal(undefined);
expect(presentation.date).to.not.equal(undefined);
});
});
Expand Down
Loading