diff options
author | Morris Jobke <hey@morrisjobke.de> | 2014-07-16 22:44:00 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2014-07-16 22:44:00 +0200 |
commit | da160a5a3e6eed90a6175d287b4d76f6d2e41639 (patch) | |
tree | 46f9a26d0166c4e1c03802c3d0e1558c60d008d3 /core | |
parent | 248e79c4657918ea76443909b277fc0f05676943 (diff) | |
parent | eb5458b8377220db2f426bd81ff87e34351953e5 (diff) | |
download | nextcloud-server-da160a5a3e6eed90a6175d287b4d76f6d2e41639.tar.gz nextcloud-server-da160a5a3e6eed90a6175d287b4d76f6d2e41639.zip |
Merge pull request #9517 from brantje/Add-webapp-meta-tags
Add webapp support
Diffstat (limited to 'core')
-rw-r--r-- | core/templates/layout.user.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/core/templates/layout.user.php b/core/templates/layout.user.php index 066362bd4a5..30940fa18d8 100644 --- a/core/templates/layout.user.php +++ b/core/templates/layout.user.php @@ -17,6 +17,10 @@ <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0"> <meta name="apple-itunes-app" content="app-id=543672169"> + <meta name="apple-mobile-web-app-capable" content="yes"> + <meta name="apple-mobile-web-app-status-bar-style" content="black"> + <meta name="apple-mobile-web-app-title" content="<?php p(!empty($_['application'] && $_['appid']!='files')? $_['application']:'ownCloud'); ?>"> + <meta name="mobile-web-app-capable" content="yes"> <link rel="shortcut icon" href="<?php print_unescaped(image_path('', 'favicon.png')); ?>" /> <link rel="apple-touch-icon-precomposed" href="<?php print_unescaped(image_path('', 'favicon-touch.png')); ?>" /> <?php foreach($_['cssfiles'] as $cssfile): ?> |