-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathhome.php
More file actions
34 lines (31 loc) · 1021 Bytes
/
home.php
File metadata and controls
34 lines (31 loc) · 1021 Bytes
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
<?php get_header(); ?>
<div id="content" class="row">
<div class="twelvecol" role="main">
<header>
<h1 class="entry-title"><?php bloginfo( 'name' ); ?></h1>
</header> <!-- end article header -->
<section class="post_content clearfix">
<div class="intro"><?php
if ( is_active_sidebar( 'homepage' ) ) {
echo '<div class="homepage">';
dynamic_sidebar( 'homepage' );
echo '</div><!-- end .homepage -->';
} else {
echo '<section class="post_content clearfix">';
echo '<h2 class="intro">'. _e('Select from a Presentation below.', 'presenter') .'</h2>';
}
$args = array(
'orderby' => 'name',
'show_count' => 1,
'title_li' => '',
'hierarchical' => false
); ?>
<ul>
<?php wp_list_categories( $args ); ?>
</ul></div>
</section> <!-- end article section -->
<footer>
</footer> <!-- end article footer -->
</div> <!-- end .twelvecol -->
</div><!-- end #content -->
<?php get_footer(); ?>