-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgallery.php
43 lines (40 loc) · 1.38 KB
/
gallery.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
<!DOCTYPE html>
<html>
<head>
<?php
$pageTitle = "Photo Gallery";
include("inc/head.php");
require_once("inc/images.php");
$images = getImagesinFolder($_SERVER["DOCUMENT_ROOT"]."/RIT-VSA/assets/custom/img");
?>
</head>
<body>
<?php include("inc/header.php"); ?>
<div class="container">
<div class="page-header">
<h3>Photo Gallery</h3>
</div>
<ul class="breadcrumb">
<li><a href="index.php">Home</a></li>
<li><a class="active" href="gallery.php">Photo Gallery</a></li>
</ul>
<div class="col-md-3">
<a href="durand photos.php"><img width=100% class="thumbnail" src="assets/custom/img/Durand.jpg"></a>
<p class="text-center">Durand Eastman Park</p>
</div>
<div class="col-md-3">
<a href="letchworth.php"><img class="thumbnail" src="assets/custom/img/Letchworth.jpg" width=100%></a>
<p class="text-center">Letchworth State Park</p>
</div>
<div class="col-md-3">
<a href="syracuse.php"><img class="thumbnail" src="assets/custom/img/Syracuse.jpg" width=100%></a>
<p class="text-center">Syracuse State Fair</p>
</div>
<div class="col-md-3">
<a href="bao birthday.php"><img class="thumbnail" src="assets/custom/img/Bao Birthday.jpg" width=100%></a>
<p class="text-center">Bảo's Birth Day</p>
</div>
</div>
</body>
<script src="assets/other/lightbox/lightbox.js"></script>
</html>