<!DOCTYPE html>
<?php
include './class/include.php';
$id = '';
$id = $_GET['id'];
$STAFF = new Attraction($id);
?>
<html>
<head>
<meta charset="utf-8">
<title>International School in Galle | Thomas Gall School | Our Staff | <?php echo $STAFF->title; ?></title>
<meta name="description" content=" Thomas Gall School a leading English Medium, International School in Galle. Teaching The British Curriculum from Playgroup - Secondary with a green focus running through all aspects of teaching and learning. We create lifelong learners securing a positive future for all. " />
<meta name="keywords" content="thomas gall international school,thoams gall,international schools in galle,english medium preschool,english medium schools galle,primary school galle,secondary school galle,international language academy,private schools galle,best international school,schools in galle,best private schools galle,language acedemy galle,primary education,secondary education" />
<meta name="author" content="Synotec Holdings Private Limited" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Stylesheets -->
<link href="css/bootstrap.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<!--Favicon-->
<link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon">
<link rel="icon" href="images/favicon.ico" type="image/x-icon">
<!-- Responsive -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<link href="css/responsive.css" rel="stylesheet">
</head>
<body>
<div class="page-wrapper">
<!-- Main Header-->
<?php include './header.php'; ?>
<!--End Main Header -->
<!--Page Title-->
<section class="page-title" style="background-image:url(images/background/5.jpg);">
<div class="auto-container">
<div class="inner-box">
<h1><?php echo $STAFF->title; ?></h1>
<ul class="bread-crumb">
<li><a href="./">Home</a></li>
<li><a href="staff.php">Our Staff</a></li>
<li><?php echo $STAFF->title; ?></li>
</ul>
</div>
</div>
</section>
<!--End Page Title-->
<!--Sidebar Page-->
<div class="sidebar-page-container">
<div class="auto-container">
<div class="row clearfix">
<!--Content Side-->
<div class="content-side col-lg-8 col-md-8 col-sm-12 col-xs-12">
<!--Classes Single-->
<section class="classes-single">
<div class="inner-box">
<div class="classes-carousel">
<div>
<div class="image-box">
<center>
<img src="upload/attraction/<?php echo $STAFF->image_name; ?>" alt="" />
</center>
</div>
</div>
</div>
<!--Lower Box-->
<div class="lower-content">
<!--Upper Box-->
<div class="upper-box">
<div class="clearfix">
<div>
<center><h3><?php echo $STAFF->title; ?></h3></center>
<div class="designation">
<center><h4><?php echo $STAFF->short_description; ?></h4></center>
</div>
</div>
</div>
</div>
<!--Lower Box-->
<div class="lower-box">
<div class="text">
<p><?php echo $STAFF->description; ?></p>
</div>
</div>
</div>
</div>
</section>
</div>
<!--Sidebar-->
<div class="sidebar-side col-lg-4 col-md-4 col-sm-12 col-xs-12">
<aside class="sidebar">
<!--Services Post Widget-->
<div class="sidebar-widget popular-posts">
<div class="sidebar-title">
<center><h3>All Staff Members</h3></center>
</div>
<!--Post-->
<?php
$ALL_PEOPLE = new Attraction(null);
foreach ($ALL_PEOPLE->all() as $key => $all_people) {
if ($key < 4) {
?>
<article class="post">
<a href="view-staff.php?id=<?php echo $all_people['id'] ?>">
<figure class="post-thumb img-circle">
<img src="upload/attraction/<?php echo $all_people['image_name'] ?>" alt=""></figure>
<div class="text">
<?php echo $all_people['title'] ?>
</div>
<div class="post-info"><?php echo $all_people['short_description'] ?></div>
</a>
</article>
<?php
}
}
?>
<!--End Post-->
<center>
<a href="staff.php" class="theme-btn btn-style-one">
View More
</a>
</center>
</div>
</aside>
</div>
</div>
</div>
</div>
<!--Main Footer-->
<?php include './footer-index.php'; ?>
</div>
<!--End pagewrapper-->
<!--Scroll to top-->
<div class="scroll-to-top scroll-to-target" data-target=".main-header"><span class="icon fa fa-long-arrow-up"></span></div>
<script src="js/jquery.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/jquery.fancybox.pack.js"></script>
<script src="js/jquery.fancybox-media.js"></script>
<script src="js/owl.js"></script>
<script src="js/appear.js"></script>
<script src="js/wow.js"></script>
<script src="js/jquery-ui.js"></script>
<script src="js/validate.js"></script>
<script src="js/script.js"></script>
</body>
</html> |