-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpage.php
executable file
·42 lines (28 loc) · 896 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
<?php get_header(); ?>
<div class="container">
<div id="content">
<div class="notable">
<!-- begin post -->
<?php
if ($posts):
while ( have_posts() ):
the_post();?>
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>><!--POST TITLE-->
<div class="title-area-page">
<h2 class="post-title"><?php the_title(); ?></h2>
<div class="line"> </div>
</div><!--END POST TITLE-->
<?php the_content('continue...'); ?>
</div> <!-- #post-id -->
<?php
endwhile;
else:
_e('Sorry, no posts matched your criteria.', 'wpfolio');
endif;
?>
</div><!-- .notable -->
</div><!-- #content -->
<?php get_sidebar(); ?><!-- lf: i just removed all the sidebar stuff from here and placed it in sidebar.php -->
<!-- end post-->
</div><!-- #container -->
<?php get_footer();?>