Advertisement
Guest User

Untitled

a guest
Dec 16th, 2012
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. <?php
  2. /*
  3. Template Name: Clean
  4. */
  5.  
  6.  
  7. /*
  8. * get_header is a basic wordpress function, used to retrieve the header.php file in your theme directory.
  9. */
  10.  
  11.  
  12. ?>
  13.  
  14. <?php
  15. global $avia_config;
  16.  
  17. get_header();
  18.  
  19. ?>
  20.  
  21. <div class='container_wrap main_color fullsize' style="width:100%;padding:10px;">
  22.  
  23. <div class='container padding-container' style="width:100%;padding:10px">
  24.  
  25. <div class='template-page content twelve alpha units' style="width:100%;padding:10px">
  26.  
  27. <?php
  28. /* Run the loop to output the posts.
  29. * If you want to overload this in a child theme then include a file
  30. * called loop-page.php and that will be used instead.
  31. */
  32. $avia_config['size'] = 'page';
  33. get_template_part( 'includes/loop', 'page' );
  34. ?>
  35.  
  36.  
  37. <!--end content-->
  38. </div>
  39.  
  40. </div><!--end container-->
  41. </div><!--end container-->
  42.  
  43.  
  44.  
  45.  
  46.  
  47. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement