Advertisement
Guest User

Untitled

a guest
Jan 24th, 2012
542
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. <div class="blocks clear-block">
  2.  
  3. <?php atom()->action('before_primary'); ?>
  4.  
  5. <?php the_post(); ?>
  6.  
  7. <?php atom()->action('before_post'); ?>
  8.  
  9. <!-- page content -->
  10.  
  11.  
  12.  
  13. <div id="post-<?php the_ID(); ?>" <?php post_class('primary'); ?>>
  14.  
  15. <?php if(!atom()->post->getMeta('hide_title')): ?>
  16. <h1 class="title"><?php the_title(); ?></h1>
  17. <?php endif; ?>
  18.  
  19. <div class="clear-block">
  20. <?php the_content(); ?>
  21. </div>
  22.  
  23. <?php atom()->post->pagination(); ?>
  24.  
  25. <?php atom()->controls('post-edit'); ?>
  26. </div>
  27. <!-- /page content -->
  28.  
  29. <?php atom()->action('after_post'); ?>
  30.  
  31. <?php atom()->template('meta'); ?>
  32.  
  33. <?php atom()->action('after_primary'); ?>
  34.  
  35. </div>
  36. </div>
  37. <!-- /primary content -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement