diff options
Diffstat (limited to 'web/templates')
-rw-r--r-- | web/templates/head.html | 23 |
1 files changed, 18 insertions, 5 deletions
diff --git a/web/templates/head.html b/web/templates/head.html index 9c025d1f9..ead648571 100644 --- a/web/templates/head.html +++ b/web/templates/head.html @@ -5,19 +5,32 @@ <title>{{ .Title }}</title> - <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css"> + <!-- iOS add to homescreen --> + <meta name="apple-mobile-web-app-capable" content="yes" /> + <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"> + <meta name="mobile-web-app-capable" content="yes" /> + <meta name="apple-mobile-web-app-title" content="{{ .Title }}"> + <meta name="application-name" content="{{ .Title }}"> + <meta name="format-detection" content="telephone=no"> + <!-- iOS add to homescreen --> + + <!-- Android add to homescreen --> + <link rel="manifest" href="/static/config/manifest.json"> + <!-- Android add to homescreen --> + + <link rel="stylesheet" href="/static/css/bootstrap-3.3.1.min.css"> <link rel="stylesheet" href="/static/css/jasny-bootstrap.min.css" rel="stylesheet"> - <script src="https://fb.me/react-with-addons-0.13.1.js"></script> - <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> - <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/js/bootstrap.min.js"></script> + <script src="/static/js/react-with-addons-0.13.1.js"></script> + <script src="/static/js/jquery-1.11.1.js"></script> + <script src="/static/js/bootstrap-3.3.1.js"></script> <link id="favicon" rel="icon" href="/static/images/favicon.ico" type="image/x-icon"> <link rel="shortcut icon" href="/static/images/favicon.ico" type="image/x-icon"> <link href='http://fonts.googleapis.com/css?family=Open+Sans:400,600,700' rel='stylesheet' type='text/css'> <link rel="stylesheet" href="/static/css/styles.css"> - <script src="/static/js/min/perfect-scrollbar.min.js"></script> + <script src="/static/js/perfect-scrollbar-0.6.3.jquery.js"></script> <script src="/static/js/bundle.js"></script> <script type="text/javascript" src="https://www.google.com/jsapi?autoload={'modules':[{'name':'visualization','version':'1','packages':['annotationchart']}]}"></script> |