Advertisement
elephantspike

index.php

Nov 11th, 2011
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.20 KB | None | 0 0
  1. <?php
  2. /**
  3. * The main template file.
  4. *
  5. * This is the most generic template file in a WordPress theme
  6. * and one of the two required files for a theme (the other being style.css).
  7. * It is used to display a page when nothing more specific matches a query.
  8. * E.g., it puts together the home page when no home.php file exists.
  9. * Learn more: http://codex.wordpress.org/Template_Hierarchy
  10. *
  11. * @package WordPress
  12. * @subpackage Adventure_Journal
  13. * @since Adventure Journal 1.0
  14. */
  15.  
  16. get_header(); ?>
  17.  
  18. <div class="content" <?php ctx_aj_getlayout(); ?>>
  19. <div id="col-main" role="main" style="<?php echo ctx_aj_customwidth('content'); ?>">
  20. <div id="main-content" <?php ctx_aj_crinkled_paper(); ?>>
  21. <?php
  22. /* Run the loop to output the posts.
  23. * If you want to overload this in a child theme then include a file
  24. * called loop-index.php and that will be used instead.
  25. */
  26. get_template_part( 'loop', 'index' );
  27. ?>
  28. </div>
  29. </div><!-- #col-main -->
  30. <?php get_sidebar(); ?>
  31. <div class="clear"></div>
  32. </div><!-- #content -->
  33.  
  34. <?php get_footer(); ?>
  35.  
  36.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement