|
|
@ -1,3 +1,29 @@ |
|
|
|
<?php |
|
|
|
echo("Work in Progress!"); |
|
|
|
get_header(); |
|
|
|
?>
|
|
|
|
<div id="primary"> |
|
|
|
<?php if (have_posts()) : ?>
|
|
|
|
<?php while (have_posts()) : ?>
|
|
|
|
<article> |
|
|
|
<?php the_post(); ?>
|
|
|
|
<h2><?php the_title(); ?></h2>
|
|
|
|
<div class="post-info"> |
|
|
|
<span class="time"><?php the_time("j. F Y"); ?></span> by <span class="author"><?php the_author_posts_link(); ?></span> <span class="comments"><?php comments_popup_link("Write a comment", "1 comment", "% comments"); ?></span> <?php edit_post_link(); ?></a>
|
|
|
|
</div> |
|
|
|
<div class="post-content"> |
|
|
|
<?php the_content(); ?>
|
|
|
|
</div> |
|
|
|
<div class="post-meta"> |
|
|
|
<span class="categories">Categories: <?php the_category(", "); ?></span>
|
|
|
|
</div> |
|
|
|
<?php comments_template(); ?>
|
|
|
|
</article> |
|
|
|
<?php |
|
|
|
endwhile; |
|
|
|
endif; |
|
|
|
?>
|
|
|
|
</div> |
|
|
|
<?php |
|
|
|
get_sidebar(); |
|
|
|
get_footer(); |
|
|
|
?>
|