layout.public.php 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. <!DOCTYPE html>
  2. <html class="ng-csp" data-placeholder-focus="false" lang="<?php p($_['language']); ?>" data-locale="<?php p($_['locale']); ?>" translate="no" >
  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="skip-actions">
  35. <?php if ($_['id-app-content'] !== null) { ?><a href="<?php p($_['id-app-content']); ?>" class="button primary skip-navigation skip-content"><?php p($l->t('Skip to main content')); ?></a><?php } ?>
  36. <?php if ($_['id-app-navigation'] !== null) { ?><a href="<?php p($_['id-app-navigation']); ?>" class="button primary skip-navigation"><?php p($l->t('Skip to navigation of app')); ?></a><?php } ?>
  37. </div>
  38. <header id="header">
  39. <div class="header-left" id="nextcloud">
  40. <img class="logo logo-icon svg" alt="<?php p($l->t('%s logo', [$theme->getName()])); ?>" src="<?= ($_['logoUrl'] ?? '') !== '' ? $_['logoUrl'] : $theme->getLogo(); ?>">
  41. <?php if (isset($template) && $template->getHeaderDetails() !== '') { ?>
  42. <div class="header-shared-by">
  43. <?php p($template->getHeaderDetails()); ?>
  44. </div>
  45. <?php } ?>
  46. </div>
  47. <div class="header-right">
  48. <?php
  49. /** @var \OCP\AppFramework\Http\Template\PublicTemplateResponse $template */
  50. if (isset($template) && $template->getActionCount() !== 0) {
  51. $primary = $template->getPrimaryAction();
  52. $others = $template->getOtherActions(); ?>
  53. <span id="header-primary-action" class="<?php if ($template->getActionCount() === 1) {
  54. p($primary->getIcon());
  55. } ?>">
  56. <a href="<?php p($primary->getLink()); ?>" class="primary button">
  57. <span><?php p($primary->getLabel()) ?></span>
  58. </a>
  59. </span>
  60. <?php if ($template->getActionCount() > 1) { ?>
  61. <div id="header-secondary-action">
  62. <button id="header-actions-toggle" class="menutoggle icon-more-white"></button>
  63. <div id="header-actions-menu" class="popovermenu menu">
  64. <ul>
  65. <?php
  66. /** @var \OCP\AppFramework\Http\Template\IMenuAction $action */
  67. foreach ($others as $action) {
  68. print_unescaped($action->render());
  69. }
  70. ?>
  71. </ul>
  72. </div>
  73. </div>
  74. <?php } ?>
  75. <?php
  76. } ?>
  77. </div>
  78. </header>
  79. <main id="content" class="app-<?php p($_['appid']) ?>">
  80. <h1 class="hidden-visually">
  81. <?php if (isset($template) && $template->getHeaderTitle() !== '') { ?>
  82. <?php p($template->getHeaderTitle()); ?>
  83. <?php } else { ?>
  84. <?php p($theme->getName()); ?>
  85. <?php } ?>
  86. </h1>
  87. <?php print_unescaped($_['content']); ?>
  88. </main>
  89. <?php if (isset($template) && $template->getFooterVisible()) { ?>
  90. <footer>
  91. <p><?php print_unescaped($theme->getLongFooter()); ?></p>
  92. <?php
  93. if ($_['showSimpleSignUpLink']) {
  94. ?>
  95. <p>
  96. <a href="https://nextcloud.com/signup/" target="_blank" rel="noreferrer noopener">
  97. <?php p($l->t('Get your own free account')); ?>
  98. </a>
  99. </p>
  100. <?php
  101. }
  102. ?>
  103. </footer>
  104. <?php } ?>
  105. </body>
  106. </html>