Advertisement
Guest User

fronpage

a guest
Feb 24th, 2012
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 3.47 KB | None | 0 0
  1. <?php
  2. get_header();?>
  3.  
  4. <div id ="maincontent">
  5.  
  6. <div class="slider">
  7.         <?php echo do_shortcode('[nivoslider slug="students-slider"]'); //if ( function_exists('show_nivo_slider') ) { show_nivo_slider(); } ?>
  8.  
  9. </div>
  10.  
  11.  
  12.     <div id ="articles" class="group">
  13.     <?php   /** WORDPRESS PAGE CONTENT **/ ?>
  14.         <?php if (have_posts()) : while (have_posts()) : the_post(); ?>    
  15.            
  16.                         <div class="entry">
  17.  
  18.                   <?php the_content(); ?>
  19.  
  20.    
  21.         </div>
  22.  
  23.            
  24.    
  25.  
  26.     <?php endwhile; ?>
  27.  
  28.     <?php include (TEMPLATEPATH . '/inc/nav.php' ); ?>
  29.  
  30.     <?php else : ?>
  31.  
  32.         <h2>Not Found</h2>
  33.  
  34.     <?php endif; ?>
  35.  
  36.   <?php       /** WORDPRESS PAGE CONTENT **/ ?>
  37.                 <div id="aside">
  38.         <?php if (function_exists('dynamic_sidebar') && dynamic_sidebar('Left Sidebar Widgets') ) : ?>
  39.         <?php endif;?>
  40.                 </div>
  41.         <div id ="others">
  42.             <div id="features" class="group">
  43.                 <?php if (function_exists('dynamic_sidebar') && dynamic_sidebar('Right Sidebar Widgets') ) : ?>
  44.                 <?php endif;?>
  45.             </div>
  46.         </div>
  47.        
  48.  
  49.        
  50.         <div id="photonavs" class="group" style="float: left;">
  51.             <ul>
  52.                 <li>
  53.                     <div id="khanacad" class="theschool">
  54.                         <img class="smallroundedcorners" src="<?php echo bloginfo('url').'/wp-content/uploads/2011/12/st-khanacademy.png'; ?>" alt="Khan Academy"/>
  55.                         <div class="ts">
  56.                             <h3 class="lowerposition"><a href="http://www.khanacademy.org/">QUICK LINK CLICK HERE</a></h3>
  57.                         </div>
  58.                     </div>
  59.                     <div style="margin-left: -12px; margin-top: 15px; width: 277px;">
  60.                         <a href="http://www.pearsonsuccessnet.com"><img src="<?php echo bloginfo('url').'/wp-content/uploads/2011/12/st-pearsonsuccess.png'; ?>" alt="Pearson Success"/></a>
  61.                     </div>
  62.                 </li>
  63.                
  64.                 <li>
  65.                     <div id="floridavirtualschool" class="theschool">
  66.                         <img class="smallroundedcorners" src="<?php echo bloginfo('url').'/wp-content/uploads/2011/12/st-floridavirtualschool.png'; ?>" alt="Florida Virtual School"/>
  67.                         <div class="ts">
  68.                             <h3 class="lowerposition"><a href="http://www.flvs.net">QUICK LINK CLICK HERE</a></h3>
  69.                     </div>
  70.                     </div>
  71.                     <div style="margin-left: -12px; margin-top: 15px; width: 277px;">
  72.                         <a href="http://www.freerice.com"><img style="margin-left: 50px;" src="<?php echo bloginfo('url').'/wp-content/uploads/2011/12/st-rice.png'; ?>" alt="Rice"/></a>
  73.                     </div>
  74.                 </li>
  75.  
  76.                 <li>
  77.                     <div id="readingplus" class="theschool">
  78.                         <img class="smallroundedcorners" src="<?php echo bloginfo('url').'/wp-content/uploads/2011/12/st-readingplus.png'; ?>" alt="Reading Plus"/>
  79.                         <div class="ts">
  80.                             <h3 class="lowerposition"><a href="http://www.readingplus.com/">QUICK LINK CLICK HERE</a></h3>
  81.                         </div>
  82.                     </div>
  83.                     <div style="margin-left: -12px; margin-top: 15px; width: 277px;">
  84.                         <a href="http://www.explorelearning.com/"><img style="margin-left: 50px;" src="<?php echo bloginfo('url').'/wp-content/uploads/2011/12/st-explorelearning.png'; ?>" alt="Explore Learning"/></a>
  85.                     </div>
  86.                 </li>
  87.             </ul>
  88.            
  89.         </div><!--section before-->
  90.          
  91.  
  92.         <div id="aside">
  93.             <?php if (function_exists('dynamic_sidebar') && dynamic_sidebar('Ical Sidebar') ) : ?>
  94.             <?php endif;?>
  95.         </div>
  96.         <div id ="others1">
  97.             <div class="features group">
  98.                 <?php if (function_exists('dynamic_sidebar') && dynamic_sidebar('Feature Widget') ) : ?>
  99.                 <?php endif;?>
  100.             </div>
  101.         </div>
  102.    
  103.  
  104.     </div><!--section before-->
  105.    
  106.    
  107. </div>
  108.  
  109. <?php
  110. get_footer();
  111. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement