-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
executable file
·52 lines (34 loc) · 2.36 KB
/
index.php
File metadata and controls
executable file
·52 lines (34 loc) · 2.36 KB
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
45
46
47
48
49
50
51
52
<?php get_header(); ?>
<div id="main">
<div id="sidebar">
<?php get_sidebar(); ?>
</div><!-- sidebar -->
<div id="posts">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?> <!-- Posts -->
<div class="onePost_post">
<h2><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h2>
<div class="entry_post">
<?php the_content(); ?>
</div>
<div id="meta_post"> <!-- Meta -->
<?php the_tags( '<strong>Tags:</strong> ', ', ', ''); ?><br />
<b><?php the_title(); ?></b><br />
was published on <?php the_date('d.m.Y'); ?> by <?php the_author(); ?>. It files under <?php the_category(', '); ?><br />
You can follow any responses to this entry through the <?php post_comments_feed_link('RSS 2.0') ?> feed.<br />
<?php edit_post_link('Edit', ''); ?>
<div id="footer_post">
<span><a href="<?php comments_link(); ?>" class="<?php if (get_comments_number()): ?>comments<?php else: ?>nocomments<?php endif; ?>"><?php comments_number(); ?></a></span>
<!-- TODO fill in social -->
<!-- AddThis Feed Button BEGIN -->
<a href="http://www.addthis.com/feed.php?pub=martinkonzett&h1=http%3A%2F%2Ffeeds.feedburner.com%2FIct4d&t1=" title="Subscribe using any feed reader!"><img border="0" width="125" alt="AddThis Feed Button" src="http://s9.addthis.com/button1-fd.gif" height="16" style="margin-top:2px;" align="absmiddle" /></a>
<!-- AddThis Feed Button END -->
</div>
</div>
</div>
<?php endwhile; ?>
<p align="center"><?php next_posts_link('« older posts') ?> | <?php
previous_posts_link('newer posts »') ?></p>
<?php endif; ?>
</div><!-- posts -->
</div><!-- main -->
<?php get_footer(); ?>