-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
44 lines (29 loc) · 1.1 KB
/
index.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
42
43
44
<?php get_header(); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="postcontainer" id="post-<?php the_ID(); ?>">
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2>
<p class="commenthead">
<?php the_time('j. F Y'); ?> | <?php comments_popup_link('Keine Kommentare', '1 Kommentar', '% Kommentare'); ?>
</p>
<div class="postcontent clearfix">
<?php the_content(); ?>
</div>
<?php comments_template(); ?>
</div>
<?php endwhile; ?>
<?php else : ?>
<div class="postcontainer">
<h2>Nichts gefunden</h2>
<p>
Es konnten keine der Anfrage entsprechenden Beiträge oder Seiten gefunden werden.
</p>
</div>
<?php endif; ?>
<?php if ($wp_query->max_num_pages > 1) : ?>
<p class="nav">
<span class="nav-prev"><?php next_posts_link('Ältere Revisionen →'); ?></span>
<span class="nav-next"><?php previous_posts_link('← Neuere Revisionen'); ?></span>
<span class="clear"></span>
</p>
<?php endif; ?>
<?php get_footer(); ?>