1
|
1 |
<?php get_header();?> |
|
2 |
<div class="main-container"> |
|
3 |
<?php if(have_posts()):?><?php while(have_posts()):the_post();?> |
|
4 |
|
|
5 |
|
|
6 |
<div class="post-title-big"> |
|
7 |
<a href="<?php the_permalink();?>" title="<?php the_title();?>"> |
|
8 |
<?php the_title();?> |
|
9 |
</a> |
|
10 |
</div><!--post-title--> |
|
11 |
<div class="post-content"> |
|
12 |
<?php the_content();?> |
|
13 |
</div><!--post-content--> |
|
14 |
<?php wp_link_pages('before=<div id="page-links">Page&after=</div>'); ?> |
|
15 |
|
|
16 |
|
|
17 |
<?php endwhile;?> |
|
18 |
<?php endif;?> |
|
19 |
|
|
20 |
|
|
21 |
</div><!--main-container--> |
|
22 |
<?php get_sidebar();?> |
|
23 |
<?php get_footer();?> |