diff options
author | Georg Ehrke <dev@georgswebsite.de> | 2013-01-25 15:57:57 +0100 |
---|---|---|
committer | Georg Ehrke <dev@georgswebsite.de> | 2013-01-25 16:05:16 +0100 |
commit | bc9ab0726efb591e3a42c3058a204d401cb1b68d (patch) | |
tree | b4ad74e6c73b28e26e1e7d738bef930b184998dd /core | |
parent | 6832dddf397bd30968a8892ee69dcbdbc84f2b9b (diff) | |
download | nextcloud-server-bc9ab0726efb591e3a42c3058a204d401cb1b68d.tar.gz nextcloud-server-bc9ab0726efb591e3a42c3058a204d401cb1b68d.zip |
add smart app banner to promote ios app
Diffstat (limited to 'core')
-rw-r--r-- | core/templates/layout.guest.php | 1 | ||||
-rw-r--r-- | core/templates/layout.user.php | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/core/templates/layout.guest.php b/core/templates/layout.guest.php index 5b39503474d..fd29b3ab36e 100644 --- a/core/templates/layout.guest.php +++ b/core/templates/layout.guest.php @@ -3,6 +3,7 @@ <head> <title>ownCloud</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + <meta name="apple-itunes-app" content="app-id=543672169"> <link rel="shortcut icon" href="<?php echo image_path('', 'favicon.png'); ?>" /><link rel="apple-touch-icon-precomposed" href="<?php echo image_path('', 'favicon-touch.png'); ?>" /> <?php foreach($_['cssfiles'] as $cssfile): ?> <link rel="stylesheet" href="<?php echo $cssfile; ?>" type="text/css" media="screen" /> diff --git a/core/templates/layout.user.php b/core/templates/layout.user.php index a16d2c9e55d..5860b1ab14f 100644 --- a/core/templates/layout.user.php +++ b/core/templates/layout.user.php @@ -3,6 +3,7 @@ <head> <title><?php echo isset($_['application']) && !empty($_['application'])?$_['application'].' | ':'' ?>ownCloud <?php echo OC_User::getUser()?' ('.OC_User::getUser().') ':'' ?></title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + <meta name="apple-itunes-app" content="app-id=543672169"> <link rel="shortcut icon" href="<?php echo image_path('', 'favicon.png'); ?>" /><link rel="apple-touch-icon-precomposed" href="<?php echo image_path('', 'favicon-touch.png'); ?>" /> <?php foreach($_['cssfiles'] as $cssfile): ?> <link rel="stylesheet" href="<?php echo $cssfile; ?>" type="text/css" media="screen" /> |