forked from PressCrew/infinity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
blog-template.php
36 lines (35 loc) · 903 Bytes
/
blog-template.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
<?php
/**
* Template Name: Blog Template
* Infinity Theme: index template
*
* @author Bowe Frankema <[email protected]>
* @link http://infinity.presscrew.com/
* @copyright Copyright (C) 2010-2011 Bowe Frankema
* @license http://www.gnu.org/licenses/gpl.html GPLv2 or later
* @package Infinity
* @subpackage templates
* @since 1.0
*/
infinity_get_header();
?>
<div id="content" role="main" class="<?php do_action( 'content_class' ); ?>">
<?php
do_action( 'open_content' );
do_action( 'open_blog' );
?>
<div id="home-page" role="main" <?php post_class(); ?>>
<?php
infinity_get_template_part( 'templates/parts/introduction-boxes', 'index' );
infinity_get_template_part( 'templates/loops/loop-blog', 'index' );
?>
</div>
<?php
do_action( 'close_blog' );
do_action( 'close_content' );
?>
</div>
<?php
infinity_get_sidebar();
infinity_get_footer();
?>