mirror of
https://github.com/medialab-prado/datamad2017.git
synced 2024-12-26 12:41:23 +01:00
Manifest is added for web app configuration
This commit is contained in:
parent
aed624dc58
commit
45647bf8c4
3 changed files with 23 additions and 0 deletions
|
@ -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"
|
||||
|
|
|
@ -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
20
manifest.json
Normal 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"
|
||||
}
|
Loading…
Reference in a new issue