-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
52 lines (52 loc) · 1.96 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
<?php get_header();?>
<div class="page-content" id="front-page">
<?php extract(get_front_page_post()); ?>
<div id="feature-wrap">
<div>
<img src="<?php echo $featured_image[0]?>" />
</div>
</div>
<div id="tooltip-desc"><?php $tooltip = get_post_meta($post->ID, 'frontpage_tooltip', true); print empty($tooltip) ? 'notooltip' : $tooltip; ?></div>
</div>
</div><!--.container -->
<div id="footer">
<div class="container">
<div class="row">
<div class="footer-widget-1 span6" id="post-content">
<h2><?php echo $post->post_title?></h2>
<div id="post-body">
<?php echo apply_filters('the_content', $post->post_content)?>
</div>
</div>
<div class="footer-widget-2 span3">
<?php if(!function_exists('dynamic_sidebar') or !dynamic_sidebar('Footer - Column Two')):?>
<?php endif;?>
</div>
<div class="footer-widget-3 span3">
<?php if(!function_exists('dynamic_sidebar') or !dynamic_sidebar('Footer - Column Three')):?>
<?php $options = get_option(THEME_OPTIONS_NAME);?>
<?php if($options['site_contact'] or $options['organization_name']):?>
<div class="maintained">
Site maintained by the <br />
<?php if($options['site_contact'] and $options['organization_name']):?>
<a href="mailto:<?php echo $options['site_contact']?>"><?php echo $options['organization_name']?></a>
<?php elseif($options['site_contact']):?>
<a href="mailto:<?php echo $options['site_contact']?>"><?php echo $options['site_contact']?></a>
<?php elseif($options['organization_name']):?>
<?php echo $options['organization_name']?>
<?php endif;?>
</div>
<?php endif;?>
<div class="copyright">© University of Central Florida</div>
<?php endif;?>
</div>
</div><!-- .row -->
</div><!-- .container -->
</div><!-- #footer -->
</body>
<!--[if IE]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<?php echo "\n".footer_()."\n"?>
</html>