forked from vincent3569/zpBootstrap
-
Notifications
You must be signed in to change notification settings - Fork 1
/
album_standard.php
53 lines (41 loc) · 1.4 KB
/
album_standard.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('inc_header.php'); ?>
<!-- .container main -->
<!-- .page-header -->
<!-- .header -->
<h3><?php printGalleryTitle(); ?></h3>
</div><!-- .header -->
</div><!-- /.page-header -->
<div class="breadcrumb">
<h4>
<?php printGalleryIndexURL(' » ', getGalleryTitle(), false); ?><?php printParentBreadcrumb('', ' » ', ' » '); ?><?php printAlbumTitle(); ?>
</h4>
</div>
<div class="page-header margin-bottom-reset">
<?php printAlbumDesc(); ?>
</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);
?>
<?php if ((zp_loggedin()) && (extensionEnabled('favoritesHandler'))) { ?>
<div class="favorites panel-group" role="tablist">
<?php printAddToFavorites($_zp_current_album); ?>
</div>
<?php } ?>
<?php if (extensionEnabled('GoogleMap')) { ?>
<?php include('inc_print_googlemap.php'); ?>
<?php } ?>
<?php if (extensionEnabled('openstreetmap')) { ?>
<?php include('inc_print_osm.php'); ?>
<?php } ?>
<?php if (extensionEnabled('comment_form')) { ?>
<?php include('inc_print_comment.php'); ?>
<?php } ?>
</div><!-- /.container main -->
<?php include('inc_footer.php'); ?>