| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- <?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>About us</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="About us" />
- <meta name="description" content="" />
- <meta name="generator" content="Dolibarr 17.0.0-beta (https://www.dolibarr.org)" />
- <meta name="dolibarr:pageid" content="248" />
- <?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 async 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-about">
- <!-- Enter here your HTML content. Add a section with an id tag and tag contenteditable="true" if you want to use the inline editor for the content -->
- <?php includeContainer('header'); ?>
- <section id="mysection1" contenteditable="true">
- <main>
- <header class="site-header site-about-header">
- <div class="container">
- <div class="row">
- <div class="col-lg-10 col-12 mx-auto">
- <h1 class="text-white">About Us</h1>
- <strong class="text-white">Get to know us more</strong>
- </div>
- </div>
- </div>
- <div class="overlay"></div>
- </header>
- <section class="about section-padding">
- <div class="container">
- <div class="row">
- <div class="col-12">
- <h2 class="mb-5">Team Members</h2>
- </div>
- <div class="col-lg-4 col-12">
- <div class="team-thumb">
- <img src="image/aaab/team/matthew-hamilton-tNCH0sKSZbA-unsplash.jpg" class="img-fluid team-image" alt="">
-
- <div class="team-info">
- <h4 class="mt-3 mb-0">Sophia</h4>
- <p>CEO & Founder</p>
- </div>
- </div>
- </div>
- <div class="col-lg-4 col-12 my-lg-0 my-4">
- <div class="team-thumb">
- <img src="image/aaab/team/nicolas-horn-MTZTGvDsHFY-unsplash.jpg" class="img-fluid team-image" alt="">
- <h4 class="mt-3 mb-0">Benjamin W.</h4>
- <p>Restaurant Manager</p>
- </div>
- </div>
- <div class="col-lg-4 col-12">
- <div class="team-thumb">
- <img src="image/aaab/team/rc-cf-FMh5o5m5N9E-unsplash.jpg" class="img-fluid team-image" alt="">
-
- <h4 class="mt-3 mb-0">Muchen Jack</h4>
- <p>Senior Chef</p>
- </div>
- </div>
- </div>
- </div>
- </section>
-
- </main>
- </section>
- <?php includeContainer('footer'); ?>
- </body>
- </html>
- <?php // BEGIN PHP
- $tmp = ob_get_contents(); ob_end_clean(); dolWebsiteOutput($tmp, "html", 248);
- // END PHP ?>
|