mirror of
https://github.com/medialab-prado/datamad2017.git
synced 2024-12-26 20:51:22 +01:00
Merge pull request #68 from tasomaniac/feature/web-app-manifest
Web app manifest
This commit is contained in:
commit
663186c708
3 changed files with 23 additions and 0 deletions
|
@ -11,6 +11,7 @@ exclude: ['/automation/', 'README.md', 'LICENSE.txt', 'CNAME']
|
||||||
|
|
||||||
# Site Settings
|
# Site Settings
|
||||||
title: "GDG DevFest Season 2014"
|
title: "GDG DevFest Season 2014"
|
||||||
|
shortTitle: "DevFest14"
|
||||||
email: "devfest@gdg.org.ua"
|
email: "devfest@gdg.org.ua"
|
||||||
description: "GDG DevFest is a set of events all around the world"
|
description: "GDG DevFest is a set of events all around the world"
|
||||||
baseurl: "/zeppelin"
|
baseurl: "/zeppelin"
|
||||||
|
|
|
@ -43,6 +43,8 @@
|
||||||
|
|
||||||
<link href="{{ "/css/main.css" | prepend: site.baseurl }}" rel="stylesheet">
|
<link href="{{ "/css/main.css" | prepend: site.baseurl }}" rel="stylesheet">
|
||||||
|
|
||||||
|
<link rel="manifest" href="{{ site.baseurl }}/manifest.json">
|
||||||
|
|
||||||
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
||||||
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
||||||
<!--[if lt IE 9]>
|
<!--[if lt IE 9]>
|
||||||
|
|
20
manifest.json
Normal file
20
manifest.json
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
---
|
||||||
|
layout: null
|
||||||
|
---
|
||||||
|
{
|
||||||
|
"short_name": "{{ site.shortTitle }}",
|
||||||
|
"name": "{{ site.title }}",
|
||||||
|
"icons": [
|
||||||
|
{
|
||||||
|
"src": "{{ site.baseurl }}/img/favicons/favicon-96x96.png",
|
||||||
|
"sizes": "96x96",
|
||||||
|
"type": "image/png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"src": "{{ site.baseurl }}/img/favicons/apple-touch-icon-144x144.png",
|
||||||
|
"sizes": "144x144",
|
||||||
|
"type": "image/png"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"display": "standalone"
|
||||||
|
}
|
Loading…
Reference in a new issue