forked from vincent3569/zpBootstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
favorites.php
44 lines (35 loc) · 981 Bytes
/
favorites.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
<?php
if (extensionEnabled('favoritesHandler')) {
include ('inc_header.php');
?>
<!-- .container main -->
<!-- .page-header -->
<!-- .header -->
<h3><?php printGalleryTitle(); ?></h3>
</div><!-- .header -->
</div><!-- /.page-header -->
<div class="breadcrumb">
<h4>
<?php printCustomPageURL(getGalleryTitle(), 'gallery', '', '', ' » '); ?><?php printAlbumTitle(); ?>
</h4>
</div>
<div class="page-header bottom-margin-reset">
<p><?php printAlbumDesc(); ?></p>
</div>
<?php
printPageListWithNav('«', '»', false, true, 'pagination pagination-sm', NULL, true, 7);
if (isAlbumPage()) {
include('inc_print_album_thumb.php');
}
if (isImagePage()) {
include('inc_print_image_thumb.php');
}
printPageListWithNav('«', '»', false, true, 'pagination pagination-sm', NULL, true, 7);
?>
</div><!-- /.container main -->
<?php
include('inc_footer.php');
} else {
include(SERVERPATH . '/' . ZENFOLDER . '/404.php');
}
?>