forked from vincent3569/zpBootstrap
-
Notifications
You must be signed in to change notification settings - Fork 1
/
gallery.php
46 lines (38 loc) · 1.12 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
44
45
46
<?php include('inc_header.php'); ?>
<!-- .container -->
<!-- .page-header -->
<!-- .header -->
<h3><?php printGalleryTitle(); ?></h3>
</div><!-- .header -->
</div><!-- /.page-header -->
<div class="breadcrumb">
<h4>
<?php
if ((isset($isHomePage)) && (!$isHomePage)) {
printSiteHomeURL(NULL, getGalleryTitle());
} else {
printGalleryIndexURL(' » ', getGalleryTitle(), false);
}
?>
</h4>
</div>
<?php if (!getOption('zpB_homepage')) { ?>
<div class="page-header top-margin-reset bottom-margin-reset">
<p><?php printGalleryDesc(); ?></p>
</div>
<?php } ?>
<?php
if (!getOption('zpB_use_infinitescroll_gallery')) {
printPageListWithNav('«', '»', false, true, 'pagination pagination-sm', NULL, true, 7);
}
if (isAlbumPage()) {
include('inc_print_album_thumb.php');
}
if (!getOption('zpB_use_infinitescroll_gallery')) {
printPageListWithNav('«', '»', false, true, 'pagination pagination-sm top-margin-reset', NULL, true, 7);
} else {
include('inc_print_infinitescroll.php');
}
?>
</div><!-- /.container main -->
<?php include('inc_footer.php'); ?>