You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
|
<?php
|
|
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();
|
|
?>
|