Skip to content

Commit efab35e

Browse files
committed
Make next speaking gig a little more elegant
1 parent 447b6bd commit efab35e

6 files changed

Lines changed: 18 additions & 12 deletions

File tree

_config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: "Write an awesome description for your new site here. You can edit
55
baseurl: ""
66
url: "https://csswizardry.com"
77
future: true
8-
sw: "0010"
8+
sw: "0011"
99

1010
# Build settings
1111
markdown: kramdown

_includes/speaking.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
<li>
2+
<h3 class="list-ui__title">Talk</h3>
3+
<img src="/img/icons/ie.png" alt="" /> <a href="https://www.meetup.com/DublinCSS/events/234858690/">DublinCSS</a>, Dublin, (Ireland) February 2017
4+
</li>

_includes/sub-content.html

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,10 @@ <h4>Projects</h4>
2020
<li><a href="http://cssguidelin.es/"><img src="/img/content/logo-css-guidelines.png" alt="CSS Guidelines" /></a></li>
2121
</ul>
2222

23-
<h4>Events</h4>
23+
<h4>Next Appearance</h4>
2424

2525
<ul class="list-ui list-ui--small">
2626

27-
<li>
28-
<h3 class="list-ui__title">Talk</h3>
29-
<a href="https://www.meetup.com/DublinCSS/events/234858690/">DublinCSS</a>, Dublin, (Ireland) February 2017
30-
</li>
27+
{% include speaking.html %}
3128

3229
</ul>

offline.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,11 @@ Or if you’d like to read something:
2222
* [Mixins Better for Performance](/2016/02/mixins-better-for-performance/)
2323
* [More Transparent UI Code with Namespaces](/2015/03/more-transparent-ui-code-with-namespaces/)
2424
* [BEMIT: Taking the BEM Naming Convention a Step Further](/2015/08/bemit-taking-the-bem-naming-convention-a-step-further/)
25+
26+
I’m next speaking at:
27+
28+
<ul>
29+
30+
{% include speaking.html %}
31+
32+
</ul>

speaking.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,7 @@ Want to see where I’m speaking next? [Check out the list.](#section:upcoming-e
3636

3737
<ol class="list-ui">
3838

39-
<li>
40-
<h3 class="list-ui__title">Talk</h3>
41-
<img src="/img/icons/ie.png" alt="" /> <a href="https://www.meetup.com/DublinCSS/events/234858690/">DublinCSS</a>, Dublin, (Ireland) February 2017
42-
</li>
39+
{% include speaking.html %}
4340

4441
<li>
4542
<h3 class="list-ui__title">Talk</h3>

sw.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
var cacheName = 'csswizardry:0010';
1+
var cacheName = 'csswizardry:0011';
22
var cacheFiles = [
33
'/',
44
'/about/',
@@ -53,7 +53,7 @@ self.addEventListener('fetch', function(event) {
5353
// Empty out any caches that don’t match the ones listed.
5454
self.addEventListener('activate', function(event) {
5555

56-
var cacheWhitelist = ['csswizardry:0010'];
56+
var cacheWhitelist = ['csswizardry:0011'];
5757

5858
event.waitUntil(
5959
caches.keys().then(function(cacheNames) {

0 commit comments

Comments
 (0)