Advertisement
Guest User

Untitled

a guest
Mar 16th, 2012
216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.29 KB | None | 0 0
  1.  
  2. <?php get_header();?>
  3.  
  4. <div id="main">
  5. <div id="maintext">
  6.  
  7. <?php
  8. $welcome_subtitle = get_option('centita_welcome_subtitle');
  9. $welcome_message = stripslashes(get_option('centita_welcome_message'));
  10. $site_desc = stripslashes(get_option('centita_site_desc'));
  11. ?>
  12. <h2><?php if ($welcome_message !="") echo stripslashes($welcome_message);?></h2>
  13. <h1><?php if ($welcome_subtitle !="") echo stripslashes($welcome_subtitle);?></h1>
  14. <p><?php if ($site_desc !="") echo stripslashes($site_desc);?></p>
  15.  
  16.  
  17. <?php
  18. $homebox_title1 = get_option('centita_homebox_title1');
  19. $homebox_desc1 = get_option('centita_homebox_desc1');
  20. $homebox_desturl1 = get_option('centita_homebox_desturl1');
  21. $homebox_image1 = get_option('centita_homebox_image1');
  22. $homebox_title2 = get_option('centita_homebox_title2');
  23. $homebox_desc2 = get_option('centita_homebox_desc2');
  24. $homebox_desturl2 = get_option('centita_homebox_desturl2');
  25. $homebox_image2 = get_option('centita_homebox_image2');
  26. ?>
  27. <div class="h-line"><hr /></div>
  28. <div class="box">
  29. <?php if (!function_exists('dynamic_sidebar') || !dynamic_sidebar('Homepage Box #1')) { ?>
  30. <div class="box-main">
  31. <div class="icon"><img src="<?php bloginfo('template_directory');?>/timthumb.php?src=<?php echo ($homebox_image1) ? $homebox_image1 : bloginfo('template_directory').'/images/img-main1.jpg';?>&amp;h=90&amp;w=66&amp;zc=1" alt="" />
  32. </div>
  33. <p>
  34. <strong><a href="<?php echo ($homebox_desturl1) ? $homebox_desturl1 : "#";?>"><?php echo ($homebox_title1) ? stripslashes($homebox_title1) : "Voluptatem accusantium";?></a></strong><br />
  35. <?php echo ($homebox_desc1) ? stripslashes($homebox_desc1) : "This is homepage box #1 widgetable area, you can use Page/Post to Box Widget here. Doloremque laudanti totam rem aperiam, sunt in culpa qui officia deserunt mollitia animi.";?>
  36. </p>
  37. <div class="clr"></div>
  38. </div>
  39. <?php } ?>
  40. </div>
  41. <div class="spacer">&nbsp;</div>
  42. <div class="box">
  43. <?php if (!function_exists('dynamic_sidebar') || !dynamic_sidebar('Homepage Box 2')) { ?>
  44. <div class="box-main">
  45. <div class="icon"><img src="<?php bloginfo('template_directory');?>/timthumb.php?src=<?php echo ($homebox_image2) ? $homebox_image2 : bloginfo('template_directory').'/images/img-main2.jpg';?>&amp;h=90&amp;w=66&amp;zc=1" alt="" />
  46. </div>
  47. <p>
  48. <strong><a href="<?php echo ($homebox_desturl2) ? $homebox_desturl2 : "#";?>"><?php echo ($homebox_title2) ? stripslashes($homebox_title2) : "Duis aute reprehenderit";?></a></strong><br />
  49. <?php echo ($homebox_desc2) ? stripslashes($homebox_desc2) : "This is homepage box #2 widgetable area, you can use Page/Post to Box Widget here. Accusantium dolorem que velit esse cillum dolore fugiatnul ulla pariatur sint occaecat nesciunt.";?>
  50. </p>
  51. <div class="clr"></div>
  52. </div>
  53. <?php } ?>
  54. </div>
  55. <div id="news_container"><?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Home-News') ) : ?>
  56. <?php endif; ?></div>
  57.  
  58.  
  59. </div><!-- end of maintext -->
  60.  
  61. </div><!-- end of main -->
  62.  
  63.  
  64. <?php wp_reset_query();?>
  65. <?php get_sidebar();?>
  66.  
  67.  
  68.  
  69. <?php get_footer();?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement