Esempio n. 1
0
<!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>
Esempio n. 2
0
<?php

$pageTitle = "Durand Eastman Park";
include "inc/header.php";
require_once "inc/images.php";
$images = getImagesinFolder($_SERVER["DOCUMENT_ROOT"] . "/RIT-VSA/img/Durand");
?>
<div class="container">
  <div class="page-header">
    <h3>Durand Eastman 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="durand photos.php">Durand Eastman Park</a></li>
  </ul>
  <div class="row">
    <?php 
foreach ($images as $image) {
    echo "<div class='col-md-3'>\n            <a href='img/Durand/" . $image . "' data-lightbox='gallery' class='thumbnail'><img src='img/Durand/" . $image . "'></a>\n            </div>";
}
?>
  </div>
</div>
<script src="js/lightbox.js"></script>
<?php 
include "inc/footer.php";
Esempio n. 3
0
<?php

$pageTitle = "Letchworth State Park";
include "inc/header.php";
require_once "inc/images.php";
$images = getImagesinFolder($_SERVER["DOCUMENT_ROOT"] . "/RIT-VSA/img/Letchworth");
?>
<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'>\n            <a href='img/Letchworth/" . $image . "' data-lightbox='gallery' class='thumbnail'><img src='img/Letchworth/" . $image . "'></a>\n            </div>";
}
?>
  </div>
</div>
<script src="js/lightbox.js"></script>
<?php 
include "inc/footer.php";
Esempio n. 4
0
<?php

$pageTitle = "Bao&apos;s Birth Day";
include "inc/header.php";
require_once "inc/images.php";
$images = getImagesinFolder($_SERVER["DOCUMENT_ROOT"] . "/RIT-VSA/img/Bao's Birth Day");
?>
<div class="container">
  <div class="page-header">
    <h3>Durand Eastman 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="bao birthday.php">Bao&apos;s Birth Day</a></li>
  </ul>
  <div class="row">
    <?php 
foreach ($images as $image) {
    echo "<div class='col-md-3'>\n            <a href='img/Bao&apos;s Birth Day/" . $image . "' data-lightbox='gallery' class='thumbnail'><img src='img/Bao&apos;s Birth Day/" . $image . "'></a>\n            </div>";
}
?>
  </div>
</div>
<script src="js/lightbox.js"></script>
<?php 
include "inc/footer.php";
Esempio n. 5
0
<?php

$pageTitle = "Syracuse State Fair";
include "inc/header.php";
require_once "inc/images.php";
$images = getImagesinFolder($_SERVER["DOCUMENT_ROOT"] . "/RIT-VSA/img/Syracuse");
?>
<div class="container">
  <div class="page-header">
    <h3>Syracuse State Fair</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="syracuse.php">Syracuse State Fair</a></li>
  </ul>
  <div class="row">
    <?php 
foreach ($images as $image) {
    echo "<div class='col-md-3'>\n            <a href='img/Syracuse/" . $image . "' data-lightbox='gallery' class='thumbnail'><img src='img/Syracuse/" . $image . "'></a>\n            </div>";
}
?>
  </div>
</div>
<script src="js/lightbox.js"></script>
<?php 
include "inc/footer.php";