Advertisement
Guest User

SolSolution Webpage Theme 1

a guest
Aug 29th, 2012
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.24 KB | None | 0 0
  1. <?php
  2. /*
  3. Template Name: Content Page Full-Width
  4. */
  5. ?>
  6.  
  7. <?php get_header(); ?>
  8.  
  9. <?php
  10. $pagecustoms = getOptions();
  11. $templateurl = get_template_directory_uri();
  12. $commentsvar = false;
  13. if (isset($pagecustoms["header_title"])){$htitle = $pagecustoms['header_title'];}else{$htitle = "";}
  14.  
  15. ?>
  16.  
  17. <!-- MAIN CONTENT START-->
  18.  
  19. <div id="content_wrapper">
  20. <div id="content">
  21. <!-- PAGE CONTENT START-->
  22. <?php if(have_posts()) :
  23. while(have_posts()) :
  24. ?>
  25. <h4 class="page_title"><?php echo $htitle; ?></h4>
  26. <div class="page_title_headline_cell_line_right page_title_headline_cell_line_right_full"></div>
  27. <div id="breadcrumb"><?php if (function_exists('dimox_breadcrumbs')) dimox_breadcrumbs(); ?>
  28. </div>
  29. <div id="contentcolumn" class="full">
  30. <div class="big_box editorarea">
  31. <?php
  32. the_post();
  33. the_content();
  34. ?>
  35. <div style="clear:both"></div>
  36. </div>
  37. <div class="headpattern_big" ></div>
  38.  
  39. <div style="clear:both"></div>
  40. </div>
  41. <?php endwhile; endif; ?>
  42.  
  43. <!-- PAGE CONTENT END-->
  44. </div>
  45.  
  46. </div>
  47. <!-- MAIN CONTENT END -->
  48.  
  49. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement