-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhome.php
44 lines (34 loc) · 995 Bytes
/
home.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
<?php
/**
* Apocrypha Homepage Template
* Andrew Clayton
* Version 1.0.0
* 8-1-2013
*/
?>
<?php get_header(); ?>
<div id="showcase-container">
<div id="showcase">
<?php get_slideshow( $slideshow = 'showcase' , $number = 5 ); ?>
</div><!-- #showcase -->
<div id="showcase-sidebar">
<?php recent_comments_widget(); ?>
<?php recent_forums_widget(); ?>
</div><!-- #showcase-sidebar -->
</div><!-- #showcase-container -->
<div id="content" role="main">
<header id="home-posts-header" class="double-border top">
<h1 id="home-posts-title">Featured Articles</h1>
</header>
<div id="posts">
<?php homepage_have_posts(); ?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<?php apoc_display_post(); ?>
<?php endwhile; endif; ?>
<nav class="pagination ajaxed" data-type="home">
<?php apoc_pagination(); ?>
</nav>
</div>
</div><!-- #content -->
<?php apoc_primary_sidebar(); ?>
<?php get_footer(); ?>