-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathletchworth.php
37 lines (34 loc) · 1 KB
/
letchworth.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
<!DOCTYPE html>
<html>
<head>
<?php
$pageTitle = "Letchworth State Park";
include("inc/head.php");
require_once("inc/images.php");
$images = getImagesinFolder($_SERVER["DOCUMENT_ROOT"]."/RIT-VSA/assets/custom/img/Letchworth");
?>
</head>
<body>
<?php include("inc/header.php"); ?>
<div class="container">
<div class="page-header">
<h3>Letchworth State Park</h3>
</div>
<ul class="breadcrumb">
<li><a href="index.php">Home</a></li>
<li><a href="gallery.php">Photo Gallery</a></li>
<li><a class="active" href="letchworth.php">Letchworth State Park</a></li>
</ul>
<div class="row">
<?php
foreach($images as $image){
echo "<div class='col-md-3'>
<a href='assets/custom/img/Letchworth/".$image."' data-lightbox='gallery' class='thumbnail'><img src='assets/custom/img/Letchworth/".$image."'></a>
</div>";
}
?>
</div>
</div>
</body>
<script src="assets/other/lightbox/lightbox.js"></script>
</html