-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
executable file
·53 lines (24 loc) · 1.03 KB
/
index.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
<?php include("includes/header.php"); ?>
<?php
$photos = Photo::find_all();
?>
<div class="row">
<!-- Blog Entries Column -->
<div class="col-md-12">
<div class="thumbnails row">
<?php foreach($photos as $v) : ?>
<div class="col-xs-6 col-md-3">
<a class="thumbnail" href="photo.php?id=<?=$v->pht_id?>">
<img src="admin/<?=$v->file_path()?>" alt="">
</a>
</div>
<?php endforeach; ?>
</div>
</div>
<!-- Blog Sidebar Widgets Column -->
<!-- <div class="col-md-4">
<?php //include("includes/sidebar.php"); ?>
</div> -->
</div>
<!-- /.row -->
<?php include("includes/footer.php"); ?>