Skip to content

Commit f8b46bb

Browse files
committedApr 16, 2018
Add icons. Begin PWA work.
1 parent d9eae6c commit f8b46bb

14 files changed

+116
-4
lines changed
 

‎_includes/head.html

+25-3
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,18 @@
88
<link href="/feed.xml" type="application/atom+xml" rel="alternate" title="{{ site.title }} posts" />
99

1010
<!-- Custom CSS -->
11-
<link rel="stylesheet" href="{{ "/css/main.css" | prepend: site.baseurl }}">
12-
13-
<!-- Google Analytics -->
11+
<link rel="stylesheet" href="{{ "{{ site.baseurl }}/css/main.css" | prepend: site.baseurl }}">
12+
13+
<link rel="shortcut icon" type="image/x-icon" href="{{ site.baseurl }}/assets/icons/favicon.ico" >
14+
<link rel="apple-touch-icon" sizes="180x180" href="{{ site.baseurl }}/assets/icons/apple-touch-icon.png">
15+
<link rel="icon" type="image/png" sizes="32x32" href="{{ site.baseurl }}/assets/icons/favicon-32x32.png">
16+
<link rel="icon" type="image/png" sizes="16x16" href="{{ site.baseurl }}/assets/icons/favicon-16x16.png">
17+
<link rel="manifest" href="{{ site.baseurl }}/assets/icons/site.webmanifest">
18+
<link rel="mask-icon" href="{{ site.baseurl }}/assets/icons/safari-pinned-tab.svg" color="#5bbad5">
19+
<meta name="msapplication-TileColor" content="#2b5797">
20+
<meta name="theme-color" content="#ffffff">
21+
22+
<!-- Google Analytics -->
1423
<script>
1524
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
1625
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
@@ -20,4 +29,17 @@
2029
ga('send', 'pageview');
2130
</script>
2231

32+
<script>
33+
function registerServiceWorker() {
34+
// register sw script in supporting browsers
35+
if ('serviceWorker' in navigator) {
36+
navigator.serviceWorker.register('{{ site.baseurl }}/sw.js', { scope: '{{ site.baseurl }}/' }).then(() => {
37+
console.log('Service Worker registered successfully.');
38+
}).catch(error => {
39+
console.log('Service Worker registration failed:', error);
40+
});
41+
}
42+
}
43+
</script>
44+
2345
</head>

‎_includes/header.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<div style="float:left; margin-top:10px; margin-right:10px;">
66
<a href="{{ "/feed.xml" | prepend: site.baseurl }}">
7-
<img src="/assets/rssicon.svg" width="40">
7+
<img src="{{ site.baseurl }}/assets/rssicon.svg" width="40">
88
</a>
99
</div>
1010

8.28 KB
Loading
16.5 KB
Loading

‎assets/icons/apple-touch-icon.png

7.7 KB
Loading

‎assets/icons/browserconfig.xml

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<browserconfig>
3+
<msapplication>
4+
<tile>
5+
<square150x150logo src="/mstile-150x150.png"/>
6+
<TileColor>#2b5797</TileColor>
7+
</tile>
8+
</msapplication>
9+
</browserconfig>

‎assets/icons/favicon-16x16.png

1.21 KB
Loading

‎assets/icons/favicon-32x32.png

1.53 KB
Loading

‎assets/icons/favicon.ico

14.7 KB
Binary file not shown.

‎assets/icons/mstile-150x150.png

5.96 KB
Loading

‎assets/icons/safari-pinned-tab.svg

+24
Loading

‎assets/icons/site.webmanifest

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"name": "",
3+
"short_name": "",
4+
"icons": [
5+
{
6+
"src": "/android-chrome-192x192.png",
7+
"sizes": "192x192",
8+
"type": "image/png"
9+
},
10+
{
11+
"src": "/android-chrome-384x384.png",
12+
"sizes": "384x384",
13+
"type": "image/png"
14+
}
15+
],
16+
"theme_color": "#ffffff",
17+
"background_color": "#ffffff",
18+
"display": "standalone"
19+
}

‎manifest.json

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"lang": "en",
3+
"dir": "ltr",
4+
"name": "Rian Ó Cuinneagáin",
5+
"short_name": "rianoc",
6+
"icons": [
7+
{
8+
"src": "\/assets\/icons\/android-chrome-192x192.png",
9+
"sizes": "192x192",
10+
"type": "image\/png"
11+
},
12+
{
13+
"src": "\/assets\/icons\/android-chrome-512x512.png",
14+
"sizes": "512x512",
15+
"type": "image\/png"
16+
}
17+
],
18+
"theme_color": "#1a1a1a",
19+
"background_color": "#1a1a1a",
20+
"start_url": "/index.html",
21+
"display": "standalone",
22+
"orientation": "natural"
23+
}

‎sw.js

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
// sw.js
2+
self.addEventListener('install', e => {
3+
e.waitUntil(
4+
// after the service worker is installed,
5+
// open a new cache
6+
caches.open('my-pwa-cache').then(cache => {
7+
// add all URLs of resources we want to cache
8+
return cache.addAll([
9+
'/',
10+
'/index.html',
11+
'/about.html'
12+
]);
13+
})
14+
);
15+
});

0 commit comments

Comments
 (0)
Please sign in to comment.