You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

layout.public.php 4.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. <!DOCTYPE html>
  2. <html class="ng-csp" data-placeholder-focus="false" lang="<?php p($_['language']); ?>" data-locale="<?php p($_['locale']); ?>" >
  3. <head data-requesttoken="<?php p($_['requesttoken']); ?>">
  4. <meta charset="utf-8">
  5. <title>
  6. <?php
  7. p(!empty($_['application'])?$_['application'].' - ':'');
  8. p($theme->getTitle());
  9. ?>
  10. </title>
  11. <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
  12. <?php if ($theme->getiTunesAppId() !== '') { ?>
  13. <meta name="apple-itunes-app" content="app-id=<?php p($theme->getiTunesAppId()); ?>">
  14. <?php } ?>
  15. <meta name="apple-mobile-web-app-capable" content="yes">
  16. <meta name="apple-mobile-web-app-status-bar-style" content="black">
  17. <meta name="apple-mobile-web-app-title" content="<?php p((!empty($_['application']) && $_['appid'] !== 'files')? $_['application']:$theme->getTitle()); ?>">
  18. <meta name="mobile-web-app-capable" content="yes">
  19. <meta name="theme-color" content="<?php p($theme->getColorPrimary()); ?>">
  20. <link rel="icon" href="<?php print_unescaped(image_path($_['appid'], 'favicon.ico')); /* IE11+ supports png */ ?>">
  21. <link rel="apple-touch-icon" href="<?php print_unescaped(image_path($_['appid'], 'favicon-touch.png')); ?>">
  22. <link rel="apple-touch-icon-precomposed" href="<?php print_unescaped(image_path($_['appid'], 'favicon-touch.png')); ?>">
  23. <link rel="mask-icon" sizes="any" href="<?php print_unescaped(image_path($_['appid'], 'favicon-mask.svg')); ?>" color="<?php p($theme->getColorPrimary()); ?>">
  24. <link rel="manifest" href="<?php print_unescaped(image_path($_['appid'], 'manifest.json')); ?>">
  25. <?php emit_css_loading_tags($_); ?>
  26. <?php emit_script_loading_tags($_); ?>
  27. <?php print_unescaped($_['headers']); ?>
  28. </head>
  29. <body id="<?php p($_['bodyid']);?>">
  30. <?php include('layout.noscript.warning.php'); ?>
  31. <?php foreach ($_['initialStates'] as $app => $initialState) { ?>
  32. <input type="hidden" id="initial-state-<?php p($app); ?>" value="<?php p(base64_encode($initialState)); ?>">
  33. <?php }?>
  34. <div id="notification-container">
  35. <div id="notification"></div>
  36. </div>
  37. <header id="header">
  38. <div class="header-left">
  39. <span id="nextcloud">
  40. <div class="logo logo-icon svg"></div>
  41. <h1 class="header-appname">
  42. <?php if (isset($template) && $template->getHeaderTitle() !== '') { ?>
  43. <?php p($template->getHeaderTitle()); ?>
  44. <?php } else { ?>
  45. <?php p($theme->getName()); ?>
  46. <?php } ?>
  47. </h1>
  48. <?php if (isset($template) && $template->getHeaderDetails() !== '') { ?>
  49. <div class="header-shared-by">
  50. <?php p($template->getHeaderDetails()); ?>
  51. </div>
  52. <?php } ?>
  53. </span>
  54. </div>
  55. <div class="header-right">
  56. <?php
  57. /** @var \OCP\AppFramework\Http\Template\PublicTemplateResponse $template */
  58. if (isset($template) && $template->getActionCount() !== 0) {
  59. $primary = $template->getPrimaryAction();
  60. $others = $template->getOtherActions(); ?>
  61. <span id="header-primary-action" class="<?php if ($template->getActionCount() === 1) {
  62. p($primary->getIcon());
  63. } ?>">
  64. <a href="<?php p($primary->getLink()); ?>" class="primary button">
  65. <span><?php p($primary->getLabel()) ?></span>
  66. </a>
  67. </span>
  68. <?php if ($template->getActionCount() > 1) { ?>
  69. <div id="header-secondary-action">
  70. <button id="header-actions-toggle" class="menutoggle icon-more-white"></button>
  71. <div id="header-actions-menu" class="popovermenu menu">
  72. <ul>
  73. <?php
  74. /** @var \OCP\AppFramework\Http\Template\IMenuAction $action */
  75. foreach ($others as $action) {
  76. print_unescaped($action->render());
  77. }
  78. ?>
  79. </ul>
  80. </div>
  81. </div>
  82. <?php } ?>
  83. <?php
  84. } ?>
  85. </div>
  86. </header>
  87. <div id="content" class="app-<?php p($_['appid']) ?>" role="main">
  88. <?php print_unescaped($_['content']); ?>
  89. </div>
  90. <?php if (isset($template) && $template->getFooterVisible()) { ?>
  91. <footer>
  92. <p><?php print_unescaped($theme->getLongFooter()); ?></p>
  93. <?php
  94. if ($_['showSimpleSignUpLink']) {
  95. ?>
  96. <p>
  97. <a href="https://nextcloud.com/signup/" target="_blank" rel="noreferrer noopener">
  98. <?php p($l->t('Get your own free account')); ?>
  99. </a>
  100. </p>
  101. <?php
  102. }
  103. ?>
  104. </footer>
  105. <?php } ?>
  106. </body>
  107. </html>