web/wp-content/themes/aparatus/page.php
changeset 1 0d28b7c10758
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/web/wp-content/themes/aparatus/page.php	Fri Mar 12 13:29:04 2010 +0000
@@ -0,0 +1,23 @@
+<?php get_header();?>
+<div class="main-container">
+<?php if(have_posts()):?><?php while(have_posts()):the_post();?>
+
+
+<div class="post-title-big">
+<a href="<?php the_permalink();?>" title="<?php the_title();?>">
+<?php the_title();?>
+</a>
+</div><!--post-title-->
+<div class="post-content">
+<?php the_content();?>
+</div><!--post-content-->
+<?php wp_link_pages('before=<div id="page-links">Page&after=</div>'); ?>
+
+
+<?php endwhile;?>
+<?php endif;?>
+
+
+</div><!--main-container-->
+<?php get_sidebar();?>
+<?php get_footer();?>
\ No newline at end of file