Advertisement
Guest User

Untitled

a guest
Aug 19th, 2012
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.05 KB | None | 0 0
  1. <?php if (have_posts()) : ?>
  2. <?php while (have_posts()) : the_post(); ?>
  3. <?php the_content( $more_link_text, $stripteaser ); ?>
  4. <div class="art-Post">
  5.     <div class="art-Post-body">
  6.  
  7. <?php if(is_front_page()) dynamic_content_gallery(); ?>      
  8.      
  9. <div style="margin-top: 15px;" class="art-Post-inner art-article">
  10. <h2 class="art-PostHeader">
  11. <a href="<?php the_permalink() ?>" rel="bookmark" title="<?php printf(__('Permanent Link to %s', 'kubrick'), the_title_attribute('echo=0')); ?>">
  12. <?php the_title(); ?>
  13. </a>
  14. </h2>
  15. <div class="art-PostContent">
  16.  
  17.     <?php //if (is_search()) the_excerpt(); else the_content(__('Read the rest of this entry &raquo;', 'kubrick')); ?>
  18.           <?php //if (is_page() or is_single()) wp_link_pages(array('before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
  19.           <?php echo $the_output;$the_output = ''; ?>
  20.        
  21. </div>
  22. <div class="cleared"></div>
  23. <?php $icons = array(); ?>
  24. <?php if (!is_page()): ?><?php ob_start(); ?><img src="<?php bloginfo('template_url'); ?>/images/PostCategoryIcon.png" width="18" height="18" alt="" />
  25. <?php printf(__('Posted in %s', 'kubrick'), get_the_category_list(', ')); ?>
  26. <?php $icons[] = ob_get_clean(); ?><?php endif; ?><?php if (!is_page() && get_the_tags()): ?><?php ob_start(); ?><img src="<?php bloginfo('template_url'); ?>/images/PostTagIcon.png" width="18" height="18" alt="" />
  27. <?php the_tags(__('Tags:', 'kubrick') . ' ', ', ', ' '); ?>
  28. <?php $icons[] = ob_get_clean(); ?><?php endif; ?><?php if (!is_page() && !is_single()): ?><?php ob_start(); ?><img src="<?php bloginfo('template_url'); ?>/images/PostCommentsIcon.png" width="16" height="14" alt="" />
  29. <?php comments_popup_link(__('No Comments &#187;', 'kubrick'), __('1 Comment &#187;', 'kubrick'), __('% Comments &#187;', 'kubrick'), '', __('Comments Closed', 'kubrick') ); ?>
  30. <?php $icons[] = ob_get_clean(); ?><?php endif; ?><?php if (0 != count($icons)): ?>
  31. <div class="art-PostFooterIcons art-metadata-icons">
  32. <?php echo implode(' | ', $icons); ?>
  33.  
  34. </div>
  35. <?php endif; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement