This repository has been archived by the owner. It is now read-only.
Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
unesco/page.php
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
27 lines (24 sloc)
596 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
Template Name: Default | |
*/ | |
get_header(); ?> | |
<div id="main-content" class="span8"><div class="content"> | |
<?php if (have_posts()) : while (have_posts()) : the_post(); ?> | |
<h4> | |
<?php the_title(); ?> | |
</h4> | |
<hr/> | |
<?php the_content(); ?> | |
<?php endwhile; endif; ?> | |
</div> | |
</div> | |
<div id="aside-block" class="span3 offset1"> | |
<?php if ( is_active_sidebar( 'sidebar' ) ) { ?> | |
<?php dynamic_sidebar( 'sidebar' ); ?> | |
<?php } else { ?> | |
<h1>Sidebar</h1> | |
<p>Go to Appearance > Widgets, and drag items into Sidebar to edit this area.</p> | |
<?php }; ?> | |
</div> | |
<?php get_footer(); ?> |