-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgallery.php
More file actions
41 lines (28 loc) · 782 Bytes
/
Copy pathgallery.php
File metadata and controls
41 lines (28 loc) · 782 Bytes
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
<?php session_start(); ?>
<?php include 'header.php' ?>
<body>
<div class="brand">Best Friend Ever</div>
<div class="address-bar">Everything about dogs</div>
<?php include 'navigation.php' ?>
<div class="container">
<div class="row">
<div class="box">
<div class="col-lg-12">
<hr>
<h2 class="intro-text text-center">Our
<strong>Breeds Gallery</strong>
</h2>
<hr>
</div>
<div class="row">
<?php include('gallery-handler.php') ?>
</div>
<div class="clearfix"></div>
</div>
</div>
</div>
<!-- /.container -->
<?php include 'footer.html' ?>
<?php include 'Scripts.html' ?>
</body>
</html>