-
Notifications
You must be signed in to change notification settings - Fork 4
/
facilities.php
executable file
·86 lines (63 loc) · 2.05 KB
/
facilities.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html lang="en">
<!-- Head -->
<head>
<?php include 'includes/head.php'; ?>
</head>
<body>
<!-- Page Preloder -->
<?php include 'includes/preloader.php'; ?>
<!-- Header -->
<?php include 'includes/header.php'; ?>
<!-- Navbar -->
<?php include 'includes/navbar.php'; ?>
<!-- Side Nav -->
<?php include 'includes/sidenav.php'; ?>
<!-- Breadcrumb section -->
<div class="site-breadcrumb">
<div class="container">
<a href="index.php"><i class="fa fa-home"></i> Home</a> <i class="fa fa-angle-right"></i>
<span>Facilities</span>
</div>
</div>
<!-- Breadcrumb section end -->
<!-- Facilities section -->
<section class="about-section spad pt-0">
<div class="container">
<div class="section-title text-center">
<h3>FACILITIES</h3>
<p>What our students think?</p>
</div>
<div class="row">
<div class="container">
<div class="row">
<?php
$dir = opendir('./img/facilities');
while(($file = readdir($dir)) !== FALSE){
if( $file !== '.' and $file !== '..')
echo '<div class="col-md-6" style="margin-bottom: 30px;">
<div class="card no-border">
<div class="card-body">
<h5 class="card-title">'.pathinfo($file)['filename'].'</h5>
<!-- <p class="card-text">With supporting text below as a natural lead-in to additional content.</p> -->
<!-- <a href="#" class="btn btn-primary">Go somewhere</a> -->
</div>
<img class="card-img-bottom" style="height:20rem;" src="./img/facilities/'.$file.'" data-toggle="modal" data-target="#exampleModalCenter" alt="Card image cap">
</div>
</div>';
}
?>
</div>
</div>
</div>
</div>
</section>
<!-- Facilities section end-->
<!-- Footer section -->
<?php include 'includes/footer.php'; ?>
<!-- Back 2 Top -->
<?php include 'includes/back2Top.php'; ?>
<!--====== Javascripts & Jquery ======-->
<?php include 'includes/javascripts.php'; ?>
</body>
</html>