diff options
author | Morris Jobke <hey@morrisjobke.de> | 2017-09-12 15:10:08 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-12 15:10:08 +0200 |
commit | 83508d7be3fb9b151c4b73152cf3719d38060d39 (patch) | |
tree | adc85178cab74b9f5877f9566c3111415a3f72d6 /core | |
parent | ff27308b88015126c1a8c892779d53a79e764d57 (diff) | |
parent | 81ef116bfb9e69f361ded5c6dd8a8ae472909fd6 (diff) | |
download | nextcloud-server-83508d7be3fb9b151c4b73152cf3719d38060d39.tar.gz nextcloud-server-83508d7be3fb9b151c4b73152cf3719d38060d39.zip |
Merge pull request #6451 from nextcloud/theming-manifest-json
Theming app support for chrome manifest.json file
Diffstat (limited to 'core')
-rw-r--r-- | core/templates/layout.guest.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/templates/layout.guest.php b/core/templates/layout.guest.php index 9a4f9c37198..ce0eccb971d 100644 --- a/core/templates/layout.guest.php +++ b/core/templates/layout.guest.php @@ -13,6 +13,7 @@ <link rel="icon" href="<?php print_unescaped(image_path('', 'favicon.ico')); /* IE11+ supports png */ ?>"> <link rel="apple-touch-icon-precomposed" href="<?php print_unescaped(image_path('', 'favicon-touch.png')); ?>"> <link rel="mask-icon" sizes="any" href="<?php print_unescaped(image_path('', 'favicon-mask.svg')); ?>" color="<?php p($theme->getColorPrimary()); ?>"> + <link rel="manifest" href="<?php print_unescaped(image_path('', 'manifest.json')); ?>"> <?php emit_css_loading_tags($_); ?> <?php emit_script_loading_tags($_); ?> <?php print_unescaped($_['headers']); ?> |