Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php get_header(); ?>
- <div class="span-24" id="contentwrap">
- <div class="span-14">
- <div id="content">
- <h1>News</h1>
- <p>_______________</p>
- <?php if (have_posts()) : ?>
- <?php while (have_posts()) : the_post(); ?>
- <div <?php post_class() ?> id="post-<?php the_ID(); ?>">
- <h2 class="title"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
- <div class="postdate"> <? echo get_avatar( get_the_author_meta('user_email'), $size = '50'); ?> Gepostet von <strong><?php the_author() ?></strong> am <?php the_time('jS F, Y') ?> <?php if (current_user_can('edit_post', $post->ID)) { ?> | <?php edit_post_link('Edit', '', ''); } ?></div><br />
- <p>________________________________________</p>
- <div class="entry">
- <?php if ( function_exists('has_post_thumbnail') && has_post_thumbnail() ) { the_post_thumbnail(array(200,160), array('class' => 'alignleft post_thumbnail')); } ?>
- <?php the_content(''); ?>
- <div class="readmorecontent">
- <a class="readmore" href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>">Read More »</a>
- </div>
- </div>
- </div><!--/post-<?php the_ID(); ?>-->
- <?php endwhile; ?>
- <div class="navigation">
- <?php if(function_exists('wp_pagenavi')) { wp_pagenavi(); } else { ?>
- <div class="alignleft"><?php next_posts_link('« Older Entries') ?></div>
- <div class="alignright"><?php previous_posts_link('Newer Entries »') ?></div>
- <?php } ?>
- </div>
- <?php else : ?>
- <h2 class="center">404_1337_P4G3_N07_F0UND</h2>
- <p class="center">Vertippt? Jedenfalls scheinst du hier falsch zu sein :P</p>
- <?php get_search_form(); ?>
- <?php endif; ?>
- </div>
- </div>
- <?php get_sidebars(); ?>
- </div>
- <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement