tpl_default2.php 696 B

1234567891011121314151617181920212223
  1. <?php /*$image = post_image_($post->ID,'medium'); */
  2. $post_images = post_images($post->ID);
  3. $imageurl = get_the_post_thumbnail_url($post->ID);
  4. ?>
  5. <article id="post-<?php the_ID();?>">
  6. <div class="image">
  7. <?php post_badge();?>
  8. <a href="<?php the_permalink()?>" title="<?php the_title_attribute();?>"><img src="<?php echo $imageurl ? $imageurl : $post_images[0]['large'][0]; ?>" alt="<?php the_title_attribute();?>"></a>
  9. <h2><a href="<?php the_permalink()?>" rel="bookmark" title="Permanent link til <?php the_title_attribute();?>"><?php the_title();?></a></h2>
  10. </div>
  11. <div class="content">
  12. <?php echo (is_single() . "LL"); ?>
  13. xxx<?php the_content();?>xxx
  14. </div>
  15. </article>