This repository has been archived by the owner. It is now read-only.
Permalink
Cannot retrieve contributors at this time
clas/page-deans-office-staff-single.php
Go to file<?php | |
/* | |
Template Name: Dean's Office Staff | |
*/ | |
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('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(); ?>"> | |
<?php $key="new-faculty-title"; echo get_post_meta($post->ID, $key, true); ?> | |
<a href="mailto:<?php $key="new-faculty-email"; echo get_post_meta($post->ID, $key, true); ?>"> | |
<?php $key="new-faculty-email"; echo get_post_meta($post->ID, $key, true); ?></a> | |
<div class="entry"> | |
<?php the_content('<p class="serif">Read the rest of this page »</p>'); ?> | |
</div> | |
</div> | |
<?php endwhile; endif; ?> | |
</div> | |
</div> | |
</div> | |
<?php get_footer(); ?> |