page248.tpl.php 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  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>About us</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="About us" />
  20. <meta name="description" content="" />
  21. <meta name="generator" content="Dolibarr 17.0.0-beta (https://www.dolibarr.org)" />
  22. <meta name="dolibarr:pageid" content="248" />
  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 async 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-about">
  34. <!-- 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 -->
  35. <?php includeContainer('header'); ?>
  36. <section id="mysection1" contenteditable="true">
  37. <main>
  38. <header class="site-header site-about-header">
  39. <div class="container">
  40. <div class="row">
  41. <div class="col-lg-10 col-12 mx-auto">
  42. <h1 class="text-white">About Us</h1>
  43. <strong class="text-white">Get to know us more</strong>
  44. </div>
  45. </div>
  46. </div>
  47. <div class="overlay"></div>
  48. </header>
  49. <section class="about section-padding">
  50. <div class="container">
  51. <div class="row">
  52. <div class="col-12">
  53. <h2 class="mb-5">Team Members</h2>
  54. </div>
  55. <div class="col-lg-4 col-12">
  56. <div class="team-thumb">
  57. <img src="image/aaab/team/matthew-hamilton-tNCH0sKSZbA-unsplash.jpg" class="img-fluid team-image" alt="">
  58. <div class="team-info">
  59. <h4 class="mt-3 mb-0">Sophia</h4>
  60. <p>CEO &amp; Founder</p>
  61. </div>
  62. </div>
  63. </div>
  64. <div class="col-lg-4 col-12 my-lg-0 my-4">
  65. <div class="team-thumb">
  66. <img src="image/aaab/team/nicolas-horn-MTZTGvDsHFY-unsplash.jpg" class="img-fluid team-image" alt="">
  67. <h4 class="mt-3 mb-0">Benjamin W.</h4>
  68. <p>Restaurant Manager</p>
  69. </div>
  70. </div>
  71. <div class="col-lg-4 col-12">
  72. <div class="team-thumb">
  73. <img src="image/aaab/team/rc-cf-FMh5o5m5N9E-unsplash.jpg" class="img-fluid team-image" alt="">
  74. <h4 class="mt-3 mb-0">Muchen Jack</h4>
  75. <p>Senior Chef</p>
  76. </div>
  77. </div>
  78. </div>
  79. </div>
  80. </section>
  81. </main>
  82. </section>
  83. <?php includeContainer('footer'); ?>
  84. </body>
  85. </html>
  86. <?php // BEGIN PHP
  87. $tmp = ob_get_contents(); ob_end_clean(); dolWebsiteOutput($tmp, "html", 248);
  88. // END PHP ?>