2024-05-27 04:08:53 -04:00
|
|
|
<?php
|
|
|
|
|
/**
|
|
|
|
|
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
|
* SPDX-FileCopyrightText: 2012-2016 ownCloud, Inc.
|
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
*/
|
|
|
|
|
?>
|
2012-08-29 11:54:31 -04:00
|
|
|
<!DOCTYPE html>
|
2022-10-27 14:13:48 -04:00
|
|
|
<html class="ng-csp" data-placeholder-focus="false" lang="<?php p($_['language']); ?>" data-locale="<?php p($_['locale']); ?>" translate="no" >
|
2014-12-05 16:23:55 -05:00
|
|
|
<head data-requesttoken="<?php p($_['requesttoken']); ?>">
|
2015-03-17 18:36:05 -04:00
|
|
|
<meta charset="utf-8">
|
2013-06-12 08:33:24 -04:00
|
|
|
<title>
|
2013-07-24 05:51:21 -04:00
|
|
|
<?php p($theme->getTitle()); ?>
|
2013-06-12 08:33:24 -04:00
|
|
|
</title>
|
2024-08-20 20:59:14 -04:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0<?php if (isset($_['viewport_maximum_scale'])) {
|
|
|
|
|
p(', maximum-scale=' . $_['viewport_maximum_scale']);
|
|
|
|
|
} ?>">
|
2017-03-27 19:37:47 -04:00
|
|
|
<meta name="theme-color" content="<?php p($theme->getColorPrimary()); ?>">
|
2024-08-01 17:06:55 -04:00
|
|
|
<meta name="csp-nonce" nonce="<?php p($_['cspNonce']); /* Do not pass into "content" to prevent exfiltration */ ?>">
|
2022-05-12 11:08:54 -04:00
|
|
|
<link rel="icon" href="<?php print_unescaped(image_path('core', 'favicon.ico')); /* IE11+ supports png */ ?>">
|
|
|
|
|
<link rel="apple-touch-icon" href="<?php print_unescaped(image_path('core', 'favicon-touch.png')); ?>">
|
|
|
|
|
<link rel="mask-icon" sizes="any" href="<?php print_unescaped(image_path('core', 'favicon-mask.svg')); ?>" color="<?php p($theme->getColorPrimary()); ?>">
|
2017-05-20 06:16:44 -04:00
|
|
|
<?php emit_css_loading_tags($_); ?>
|
2017-03-08 03:43:51 -05:00
|
|
|
<?php emit_script_loading_tags($_); ?>
|
2014-10-28 06:15:58 -04:00
|
|
|
<?php print_unescaped($_['headers']); ?>
|
2012-08-29 11:54:31 -04:00
|
|
|
</head>
|
2018-08-03 13:21:10 -04:00
|
|
|
<body id="body-public" class="layout-base">
|
2018-01-26 17:46:40 -05:00
|
|
|
<?php include 'layout.noscript.warning.php'; ?>
|
2024-07-30 07:24:38 -04:00
|
|
|
<?php include 'layout.initial-state.php'; ?>
|
2018-07-27 03:42:34 -04:00
|
|
|
<div id="content" class="app-public" role="main">
|
|
|
|
|
<?php print_unescaped($_['content']); ?>
|
2018-07-23 14:14:19 -04:00
|
|
|
</div>
|
2012-08-29 11:54:31 -04:00
|
|
|
</body>
|
|
|
|
|
</html>
|