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: Programs
*/
get_header(); ?>
<div id="home-interior">
<div class="row" id="row1">
<div class="page-title clear">
<h1><?php the_title(); ?></h1>
</div>
<div class="interior-hero">
<?php the_post_thumbnail(); ?>
</div>
<div class="span12 follow-hero">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="post content clearfix" id="post-<?php the_ID(); ?>">
<div class="entry">
<?php the_content('<p class="serif">Read the rest of this page &raquo;</p>'); ?>
<!-- <p class="programs-p"></p> -->
</div>
</div>
<?php endwhile; endif; ?>
</div>
</div>
</div>
<?php get_footer(); ?>