-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage.php
32 lines (21 loc) · 834 Bytes
/
page.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
<?php
/**
* @package WordPress
* @subpackage Piraten_Berlin_Theme
*/
get_header();
?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div <?php post_class() ?> id="post-<?php the_ID(); ?>">
<h2 class="storytitle"><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php printf(__('Permanent Link to %s'), the_title_attribute('echo=0')); ?>"><?php the_title(); ?></a><span class="edit"> <?php edit_post_link(__('Edit This')); ?></span></h2>
<div class="storycontent">
<?php the_content(__('(more...)')); ?>
</div>
<div class="meta">
<?php _e("Filed under:"); ?> <?php the_category(',') ?> — <?php the_tags(__('Tags: '), ', ', ' — '); ?>
</div>
</div>
<?php endwhile; else: ?>
<p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
<?php endif; ?>
<?php get_footer(); ?>