-
Notifications
You must be signed in to change notification settings - Fork 1
/
content.php
22 lines (20 loc) · 832 Bytes
/
content.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
/**
* The default template for displaying content.
*/
?>
<section class="main">
<article class="post" id="post-<?php the_ID(); ?>">
<section class="post-content">
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2>
<p><?php echo the_content(); ?></p>
</section>
<aside class="meta">
<p><time datetime="<?php echo get_the_time(Y-m-d-g-i-s); ?>"><?php echo get_the_date(); ?></time></p>
<p>Kategorie:<?php the_category(',') ?></p>
<p>Schlagworte <?php the_tags(""); ?></p>
<p><a href="#comments"><?php comments_number( 'Kommentieren', '1 Kommentar', '% Kommentare' ); ?></a></p>
</aside>
<footer><?php comments_template(); ?></footer>
</article><!-- /.post-->
</section><!-- /.main-->