Skip to content
This repository has been archived by the owner. It is now read-only.
Permalink
master
Switch branches/tags

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?
Go to file
 
 
Cannot retrieve contributors at this time
<?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(); ?>