- Timestamp:
- 05/24/2015 08:06:47 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/global.wordpress.org/public_html/wp-content/themes/rosetta/page.php
r465 r1615 1 <?php get_header(); ?>2 <div class="wrapper">3 <div class="section">4 1 <?php 5 while(have_posts()): 6 the_post(); 2 get_header(); 3 4 the_post(); 7 5 ?> 8 <div class="main"> 9 <h3><?php the_title(); ?></h3> 10 11 <?php the_content(); ?> 12 </div> 13 14 <div class="sidebar"> 15 <?php 16 include 'download-sidebar.php'; 17 ?> 18 </div> 6 <div id="headline"> 7 <div class="wrapper"> 8 <h2><?php the_title(); ?></h2> 9 </div> 10 </div> 11 <div id="pagebody"> 12 <div class="wrapper"> 13 <div class="col-9"> 14 <?php the_content(); ?> 15 </div> 16 <div class="col-3"> 17 <?php get_template_part( 'download-sidebar' ); ?> 19 18 </div> 20 19 </div> 20 </div> 21 21 <?php 22 endwhile; 23 get_footer(); 24 ?> 22 get_footer();
Note: See TracChangeset
for help on using the changeset viewer.