Skip to content

Commit

Permalink
Update speaking
Browse files Browse the repository at this point in the history
  • Loading branch information
csswizardry committed Sep 24, 2024
1 parent 14100b3 commit 47d2b14
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 6 deletions.
2 changes: 1 addition & 1 deletion _includes/speaking.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<li>
<h4 class="list-ui__title">Talk &amp; Workshop</h4>
<img src="/img/icons/cz.png" alt width="16" height="11" loading="lazy"> <a href="https://webexpo.net/">WebExpo</a>: Prague (Czech Republic), May 2024
<img src="/img/icons/ca.png" alt width="16" height="11" loading="lazy" /> <a href="https://fitc.ca/event/webu24/">Web Unleashed</a>: Toronto (Canada), October 2024
</li>
2 changes: 1 addition & 1 deletion _layouts/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<script>
if ('serviceWorker' in navigator) {
window.addEventListener('load', function() {
navigator.serviceWorker.register('/sw.js?0153').then(function(registration) {
navigator.serviceWorker.register('/sw.js?0154').then(function(registration) {
// Successfully registered the Service Worker
//console.log('Service Worker registration successful with scope: ', registration.scope);
}).catch(function(err) {
Expand Down
20 changes: 18 additions & 2 deletions speaking.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,15 +53,15 @@ workshop](/workshops/). My workshops are renowned.

## Upcoming Events

### 2023
### 2024

<ol class="list-ui mb">

{% include speaking.html %}

<li>
<h4 class="list-ui__title">Talk</h4>
<img src="/img/icons/en.png" alt="" width="16" height="11" loading="lazy" /> <a href="https://www.middlesbroughfe.co.uk/">Middlesbrough Front End</a>: Middlesbrough (England), July 2024
<img src="/img/icons/nl.png" alt width="16" height="11" loading="lazy" /> <a href="https://perfnow.nl/">performance.now()</a>: Amsterdam (Netherlands), November 2024
</li>

</ol>
Expand Down Expand Up @@ -135,6 +135,22 @@ standard](/2016/06/speakers-checklist-before-and-after-your-talk/).

## Past Events

### 2024

<ol class="list-ui mb" reversed>

<li>
<h4 class="list-ui__title">Talk</h4>
<img src="/img/icons/en.png" alt="" width="16" height="11" loading="lazy" /> <a href="https://www.middlesbroughfe.co.uk/">Middlesbrough Front End</a>: Middlesbrough (England), July 2024
</li>

<li>
<h4 class="list-ui__title">Talk &amp; Workshop</h4>
<img src="/img/icons/cz.png" alt width="16" height="11" loading="lazy"> <a href="https://webexpo.net/">WebExpo</a>: Prague (Czech Republic), May 2024
</li>

</ol>

### 2023

<ol class="list-ui mb" reversed>
Expand Down
4 changes: 2 additions & 2 deletions sw.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
var cacheName = 'csswizardry:0153';
var cacheName = 'csswizardry:0154';
var cacheFiles = [
'/',
'/about/',
Expand Down Expand Up @@ -63,7 +63,7 @@ self.addEventListener('fetch', function(event) {
// Empty out any caches that don’t match the ones listed.
self.addEventListener('activate', function(event) {

var cacheWhitelist = ['csswizardry:0153'];
var cacheWhitelist = ['csswizardry:0154'];

event.waitUntil(
caches.keys().then(function(cacheNames) {
Expand Down

0 comments on commit 47d2b14

Please sign in to comment.