| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- <?php // BEGIN PHP
- $websitekey=basename(__DIR__); if (empty($websitepagefile)) $websitepagefile=__FILE__;
- if (! defined('USEDOLIBARRSERVER') && ! defined('USEDOLIBARREDITOR')) {
- $pathdepth = count(explode('/', $_SERVER['SCRIPT_NAME'])) - 2;
- require_once $pathdepth ? str_repeat('../', $pathdepth) : './'.'master.inc.php';
- } // Not already loaded
- require_once DOL_DOCUMENT_ROOT.'/core/lib/website.lib.php';
- require_once DOL_DOCUMENT_ROOT.'/core/website.inc.php';
- ob_start();
- // END PHP ?>
- <html lang="en">
- <head>
- <title>Credits</title>
- <meta charset="utf-8">
- <meta http-equiv="content-type" content="text/html; charset=utf-8" />
- <meta name="robots" content="index, follow" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <meta name="keywords" content="" />
- <meta name="title" content="Credits" />
- <meta name="description" content="Credits and legal notices" />
- <meta name="generator" content="Dolibarr 14.0.0-alpha (https://www.dolibarr.org)" />
- <meta name="dolibarr:pageid" content="20" />
- <?php if ($website->use_manifest) { print '<link rel="manifest" href="/manifest.json.php" />'."\n"; } ?>
- <!-- Include link to CSS file -->
- <link rel="stylesheet" href="/styles.css.php?website=<?php echo $websitekey; ?>" type="text/css" />
- <!-- Include link to JS file -->
- <script src="/javascript.js.php"></script>
- <!-- Include HTML header from common file -->
- <?php if (file_exists(DOL_DATA_ROOT."/website/".$websitekey."/htmlheader.html")) include DOL_DATA_ROOT."/website/".$websitekey."/htmlheader.html"; ?>
- <!-- Include HTML header from page header block -->
- </head>
- <!-- File generated by Dolibarr website module editor -->
- <body id="bodywebsite" class="bodywebsite bodywebpage-credits">
-
- <!-- Wrapper -->
- <div id="wrapper">
- <!-- Header -->
- <header id="header">
- <h1>Mentions légales</h1>
- <p>Curriculum Vitae</p>
- </header>
- <!-- Menu -->
- <?php includeContainer('menu'); ?>
- <!-- Main -->
- <div id="main">
- <!-- Content -->
- <section id="content" class="main">
- <div class="chapo"><p>
-
- This site is edited by <?php echo $mysoc->name; ?>
-
- </div>
- </section>
- </div>
- <!-- Footer -->
- <?php includeContainer('footer'); ?>
- </div>
- </body>
- </html>
- <?php // BEGIN PHP
- $tmp = ob_get_contents(); ob_end_clean(); dolWebsiteOutput($tmp, "html", 20);
- // END PHP ?>
|