page20.tpl.php 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. <?php // BEGIN PHP
  2. $websitekey=basename(__DIR__); if (empty($websitepagefile)) $websitepagefile=__FILE__;
  3. if (! defined('USEDOLIBARRSERVER') && ! defined('USEDOLIBARREDITOR')) {
  4. $pathdepth = count(explode('/', $_SERVER['SCRIPT_NAME'])) - 2;
  5. require_once $pathdepth ? str_repeat('../', $pathdepth) : './'.'master.inc.php';
  6. } // Not already loaded
  7. require_once DOL_DOCUMENT_ROOT.'/core/lib/website.lib.php';
  8. require_once DOL_DOCUMENT_ROOT.'/core/website.inc.php';
  9. ob_start();
  10. // END PHP ?>
  11. <html lang="en">
  12. <head>
  13. <title>Credits</title>
  14. <meta charset="utf-8">
  15. <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  16. <meta name="robots" content="index, follow" />
  17. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  18. <meta name="keywords" content="" />
  19. <meta name="title" content="Credits" />
  20. <meta name="description" content="Credits and legal notices" />
  21. <meta name="generator" content="Dolibarr 14.0.0-alpha (https://www.dolibarr.org)" />
  22. <meta name="dolibarr:pageid" content="20" />
  23. <?php if ($website->use_manifest) { print '<link rel="manifest" href="/manifest.json.php" />'."\n"; } ?>
  24. <!-- Include link to CSS file -->
  25. <link rel="stylesheet" href="/styles.css.php?website=<?php echo $websitekey; ?>" type="text/css" />
  26. <!-- Include link to JS file -->
  27. <script src="/javascript.js.php"></script>
  28. <!-- Include HTML header from common file -->
  29. <?php if (file_exists(DOL_DATA_ROOT."/website/".$websitekey."/htmlheader.html")) include DOL_DATA_ROOT."/website/".$websitekey."/htmlheader.html"; ?>
  30. <!-- Include HTML header from page header block -->
  31. </head>
  32. <!-- File generated by Dolibarr website module editor -->
  33. <body id="bodywebsite" class="bodywebsite bodywebpage-credits">
  34. <!-- Wrapper -->
  35. <div id="wrapper">
  36. <!-- Header -->
  37. <header id="header">
  38. <h1>Mentions légales</h1>
  39. <p>Curriculum Vitae</p>
  40. </header>
  41. <!-- Menu -->
  42. <?php includeContainer('menu'); ?>
  43. <!-- Main -->
  44. <div id="main">
  45. <!-- Content -->
  46. <section id="content" class="main">
  47. <div class="chapo"><p>
  48. This site is edited by <?php echo $mysoc->name; ?>
  49. </div>
  50. </section>
  51. </div>
  52. <!-- Footer -->
  53. <?php includeContainer('footer'); ?>
  54. </div>
  55. </body>
  56. </html>
  57. <?php // BEGIN PHP
  58. $tmp = ob_get_contents(); ob_end_clean(); dolWebsiteOutput($tmp, "html", 20);
  59. // END PHP ?>