-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsingle.php
More file actions
26 lines (21 loc) · 759 Bytes
/
single.php
File metadata and controls
26 lines (21 loc) · 759 Bytes
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
<?php get_header(); ?>
<div class="container blog">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="post row">
<div class="col-md-9">
<h2><?php the_title(); ?></h2>
<div class="post-content">
<?php the_content(); ?>
<div class = "post-footer">
<?php the_author(); ?> | <?php the_date(); ?>
</div>
</div>
<?php comments_template(); ?>
</div>
</div>
<?php endwhile; else: ?>
<p>Es ist kein Eintrag vorhanden.</p>
<?php endif; ?>
<p align="center"><?php posts_nav_link(); ?></p>
</div>
<?php get_footer(); ?>