Manifest is added for web app configuration

This commit is contained in:
Said Tahsin Dane 2015-03-14 00:46:38 +02:00
parent aed624dc58
commit 45647bf8c4
3 changed files with 23 additions and 0 deletions

View file

@ -10,6 +10,7 @@ exclude: ['/automation/', 'README.md', 'LICENSE.txt', 'CNAME']
# Site Settings
short_title: "DevFest14"
title: "GDG DevFest Season 2014"
email: "devfest@gdg.org.ua"
description: "GDG DevFest is a set of events all around the world"

View file

@ -43,6 +43,8 @@
<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 -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>

20
manifest.json Normal file
View file

@ -0,0 +1,20 @@
---
layout: null
---
{
"short_name": "{{ site.short_title }}",
"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"
}