100 lines
4.8 KiB
PHP
100 lines
4.8 KiB
PHP
<!------main-content------>
|
|
<main class="main-content">
|
|
<section class="page_title">
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-lg-12 d-flex">
|
|
<div class="content_box">
|
|
<ul class="bread_crumb text-center">
|
|
<li class="bread_crumb-item"><a href="/">Home</a></li>
|
|
<li class="bread_crumb-item active"> About <?=PROUCT_BRAND_NAME?> </li>
|
|
</ul>
|
|
<h1 style="color: black;">About us </h1>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
<section class="about type_one">
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-lg-4">
|
|
<div class="row">
|
|
<div class="col-lg-12 first_column">
|
|
<div class="icon_box type_one wow slideInUp" data-wow-delay="00ms" data-wow-duration="1500ms">
|
|
<div class="icon">
|
|
<img src="assets/image/dr-sanya-merms.jpg" alt="dr-sanya-merms" />
|
|
</div>
|
|
<div class="content_box">
|
|
<h2><a href="#">Dr. SanyaOlu A. Ameye. MBBS, FWACS, FMCORL</a></h2>
|
|
<p><a href="https://www.linkedin.com/in/sanyaolu-ameye-468335/">Linkedin</a> </p>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
<div class="col-lg-8">
|
|
<div class="heading icon_dark tp_one">
|
|
<h1><?=PROUCT_BRAND_NAME?> </h1>
|
|
<span class="flaticon-virus icon"></span>
|
|
</div>
|
|
<div class="about_content">
|
|
<h4>Our Mission and Vision</h4>
|
|
<p class="description">MERMS was founded in 2000 with a simple goal: Provide practical patient, users, providers solutions that improve all outcomes. We also make it a foundation item to adapt the solutions we provide to evolving technology with ease of adoption.
|
|
</p>
|
|
<hr />
|
|
<p class="description">MERMS was built on the design of user care. We know we are all patient at a time, but that is not the totality of our care experience. So we have designed the intelligent solution to care for your health flow, what you need daily to moment by moment for the best outcome.
|
|
</p>
|
|
<p class="description">As a team of health providers, we understand the reality of connecting with the patient, especially when in the care transition period. Nobody wanted to know about the health situation late when it could be addressed early. This MERMS solution provides continuous health data integration for provider-patient optimization.
|
|
</p>
|
|
<p class="description">We have dedicated our careers to improving healthcare. We listen to our users and are proud to consider us care partners.
|
|
</p>
|
|
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="doctor type_one bg_white">
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-lg-12 ">
|
|
<div class="heading tp_one">
|
|
<h1>Latest from our blog</h1>
|
|
<span class="flaticon-virus icon"></span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-lg-12 padding_zero">
|
|
<div class="owl-carousel three_items">
|
|
|
|
<?php
|
|
foreach ($blog_post as $bitem) {
|
|
// print_r($bitem);
|
|
?>
|
|
<div class="doctor_box type_one ">
|
|
<div class="image_box">
|
|
<img src="<?=$bitem['image']?>" class="img-fluid" alt="<?= $bitem['title'] ?>" />
|
|
</div>
|
|
<div class="content_box">
|
|
|
|
<h2> <a href="<?= $bitem['link'] ?>"><?= $bitem['title'] ?> </a> </h2>
|
|
<small><?= $bitem['date'] ?></small>
|
|
<p><?= $bitem['desc']?>.</p>
|
|
</div>
|
|
</div>
|
|
<?php
|
|
}
|
|
?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|