-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
73 lines (52 loc) · 2.33 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<?php echo head(array('bodyid'=>'home')); ?>
<aside id="intro" role="introduction">
<p><?php echo option('description'); ?></p>
</aside>
<?php if (get_theme_option('Homepage Text')): ?>
<p><?php echo get_theme_option('Homepage Text'); ?></p>
<?php endif; ?>
<?php if (get_theme_option('Display Featured Item') !== '0'): ?>
<?php echo random_featured_items(1); ?>
<?php endif; ?>
<?php if (get_theme_option('Display Featured Collection') !== '0'): ?>
<!-- Featured Collection -->
<div id="featured-collection">
<h2><?php echo __('Featured Collection'); ?></h2>
<?php echo random_featured_collection(); ?>
</div><!-- end featured collection -->
<?php endif; ?>
<?php if ((get_theme_option('Display Featured Exhibit') !== '0')
&& plugin_is_active('ExhibitBuilder')
&& function_exists('exhibit_builder_display_random_featured_exhibit')): ?>
<!-- Featured Exhibit -->
<?php echo exhibit_builder_display_random_featured_exhibit(); ?>
<?php endif; ?>
<div id="recent-items">
<h2><?php echo __('Recently Added Items'); ?></h2>
<?php
$homepageRecentItems = (int)get_theme_option('Homepage Recent Items') ? get_theme_option('Homepage Recent Items') : '3';
set_loop_records('items', get_recent_items($homepageRecentItems));
if (has_loop_records('items')):
?>
<div class="items-list">
<?php foreach (loop('items') as $item): ?>
<div class="item">
<?php if (metadata('item', 'has thumbnail')): ?>
<div class="item-img">
<?php echo link_to_item(item_image('square_thumbnail')); ?>
</div>
<?php endif; ?>
<h3><?php echo link_to_item(); ?></h3>
<?php if($desc = metadata('item', array('Dublin Core', 'Description'), array('snippet'=>150))): ?>
<div class="item-description"><?php echo $desc; ?><?php echo link_to_item('see more',(array('class'=>'show'))) ?></div>
<?php endif; ?>
</div>
<?php endforeach; ?>
</div>
<?php else: ?>
<p><?php echo __('No recent items available.'); ?></p>
<?php endif; ?>
<p class="view-items-link"><a href="<?php echo html_escape(url('items')); ?>" class="button"><?php echo __('View All Items'); ?></a></p>
</div><!--end recent-items -->
<?php fire_plugin_hook('public_home', array('view' => $this)); ?>
<?php echo foot(); ?>