forked from crowdfavorite/wp-favepersonal
-
Notifications
You must be signed in to change notification settings - Fork 12
/
page.php
executable file
·43 lines (33 loc) · 979 Bytes
/
page.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
<?php
/**
* @package favepersonal
*
* This file is part of the Personal Theme for WordPress
* http://github.com/alexkingorg/wp-personal
* (Forked from http://crowdfavorite.com/favepersonal/)
*
* Copyright (c) 2008-2013 Crowd Favorite, Ltd. All rights reserved.
* http://crowdfavorite.com
*
* Copyright (c) 2015 Alex King.
*
* **********************************************************************
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* **********************************************************************
*/
if (__FILE__ == $_SERVER['SCRIPT_FILENAME']) { die(); }
if (CFCT_DEBUG) { cfct_banner(__FILE__); }
get_header();
?>
<div id="primary">
<?php
cfct_loop();
comments_template();
?>
</div><!--#primary-->
<div id="secondary">
<?php get_sidebar(); ?>
</div><!--#secondary-->
<?php get_footer(); ?>