-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php~
69 lines (55 loc) · 2.76 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
<?php echo head(array('bodyid'=>'home', 'bodyclass' =>'two-col')); ?>
<!-- Nivo Slider Markup -->
<div id="banner">
<div id="slider" class="nivoSlider">
<a><img src="/themes/ucsc-omeka/nivo-slides/01.jpg" alt="slideshow image" /></a>
<a><img src="/themes/ucsc-omeka/nivo-slides/02.jpg" alt="slideshow image" /><a>
<a><img src="/themes/ucsc-omeka/nivo-slides/03.jpg" alt="slideshow image" /></a>
<a><img src="/themes/ucsc-omeka/nivo-slides/04.jpg" alt="slideshow image" /></a>
</div>
</div>
<div id="primary">
<div id="ribbonleft">
<div id="ribbonright">
<div id="feature-row">
<div class="featured" id="recent-exhibits">
<h2>Recent <strong>Exhibits</strong></h2>
<div class="featured-first featured-content">
<?php
$exhibits = exhibit_builder_recent_exhibits(3);
foreach(loop('files', $exhibits) as $exhibit):
echo '<div class="item"><a href="'.$exhibit->getRecordUrl() .'">' .file_image('square_thumbnail', array(), $exhibit->getFile()) .'</a>';
echo '<h3><a href="'.$exhibit->getRecordUrl() .'">' .$exhibit->title.'</a></h3></div>';
endforeach;
?>
<p class="more"><a href="/exhibits/browse">More...</a></p>
</div>
</div>
<?php if (get_theme_option('Display Featured Item') == 1): ?>
<!-- Featured Item -->
<div class="featured" id="featured-item">
<h2><?php echo __('Featured <strong>Item</strong>'); ?></h2>
<div class="featured-second featured-content">
<?php echo random_featured_items(1); ?>
</div>
</div><!--end featured-item-->
<?php endif; ?>
<div class="featured" id="digital-collections">
<h2>Digital <strong>Collections</strong></h2>
<div class="featured-third featured-content">
<p><a href="http://digitalcollections.ucsc.edu/">Browse all 36,000+ digital objects in our collection</a></p>
<div id="digital-collections-logo">
<a href="http://digitalcollections.ucsc.edu/"><img src="/themes/ucsc-omeka/images/digital-collections.png" alt="UCSC Library Digital Collections Logo" /></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div><!-- end primary -->
<?php if ($homepageText = get_theme_option('Homepage Text')): ?>
<div id="secondary"><?php echo $homepageText; ?></div>
<?php endif; ?>
<?php fire_plugin_hook('public_home', array('view' => $this)); ?>
</div><!-- end secondary -->
<?php echo foot(); ?>