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: Contact
*/
get_header(); ?>
<div class="row">
<div class="span8 floatleft">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="post content clearfix" id="post-<?php the_ID(); ?>">
<!-- <h1>
<?php the_title(); ?>
</h1> -->
<div class="entry">
<?php the_content('<p class="serif">Read the rest of this page &raquo;</p>'); ?>
<?php wp_link_pages(array('before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
</div>
</div>
<?php endwhile; endif; ?>
</div>
<div class="span3 floatleft">
<div class="Contact-Main-Header">
<?php $key="Contact-Main-Header"; echo get_post_meta($post->ID, $key, true); ?>
</div>
<div class="Contact-Main-Address">
<?php $key="Contact-Main-Address"; echo get_post_meta($post->ID, $key, true); ?>
</div>
<div class="Contact-Main-Phone">
<?php $key="Contact-Main-Phone"; echo get_post_meta($post->ID, $key, true); ?>
</div>
<div class="ucs-button">
<a href="http://urban.uconn.edu/faculty-list/ ">Faculty &amp; Staff</a>
</div>
</div>
</div>
<div class="leftspacer-wrapper">
<div class="row">
<div class="span3 floatleft contact hartford">
<div class="Contact-Hartford-Header">
<?php $key="Contact-Hartford-Header"; echo get_post_meta($post->ID, $key, true); ?>
</div>
<div class="Contact-Hartford-Person">
<?php $key="Contact-Hartford-Person"; echo get_post_meta($post->ID, $key, true); ?>
</div>
<div class="Contact-Hartford-Address">
<?php $key="Contact-Hartford-Address"; echo get_post_meta($post->ID, $key, true); ?>
</div>
<div class="Contact-Hartford-Phone">
<?php $key="Contact-Hartford-Phone"; echo get_post_meta($post->ID, $key, true); ?>
</div>
</div>
<div class="span3 floatleft noMargLeft contact storrs">
<div class="Contact-Storrs-Header">
<?php $key="Contact-Storrs-Header"; echo get_post_meta($post->ID, $key, true); ?>
</div>
<div class="Contact-Storrs-Person">
<?php $key="Contact-Storrs-Person"; echo get_post_meta($post->ID, $key, true); ?>
</div>
<div class="Contact-Storrs-Address">
<?php $key="Contact-Storrs-Address"; echo get_post_meta($post->ID, $key, true); ?>
</div>
<div class="Contact-Storrs-Phone">
<?php $key="Contact-Storrs-Phone"; echo get_post_meta($post->ID, $key, true); ?>
</div>
</div>
<div class="span3 floatleft noMargLeft contact waterbury">
<div class="Contact-Waterbury-Header">
<?php $key="Contact-Waterbury-Header"; echo get_post_meta($post->ID, $key, true); ?>
</div>
<div class="Contact-Waterbury-Person">
<?php $key="Contact-Waterbury-Person"; echo get_post_meta($post->ID, $key, true); ?>
</div>
<div class="Contact-Waterbury-Address">
<?php $key="Contact-Waterbury-Address"; echo get_post_meta($post->ID, $key, true); ?>
</div>
<div class="Contact-Waterbury-Phone">
<?php $key="Contact-Waterbury-Phone"; echo get_post_meta($post->ID, $key, true); ?>
</div>
</div>
<!--<div class="span3 floatleft noMargLeft contact torrington">
<div class="Contact-Torrington-Header">
<?php $key="Contact-Torrington-Header"; echo get_post_meta($post->ID, $key, true); ?>
</div>
<div class="Contact-Torrington-Person">
<?php $key="Contact-Torrington-Person"; echo get_post_meta($post->ID, $key, true); ?>
</div>
<div class="Contact-Torrington-Address">
<?php $key="Contact-Torrington-Address"; echo get_post_meta($post->ID, $key, true); ?>
</div>
<div class="Contact-Torrington-Phone">
<?php $key="Contact-Torrington-Phone"; echo get_post_meta($post->ID, $key, true); ?>
</div>
</div>-->
</div>
<div class="row margin-top">
<div class="span3 floatleft director">
<div class="Contact-Director-Header">
<?php $key="Contact-Director-Header"; echo get_post_meta($post->ID, $key, true); ?>
</div>
<div class="Contact-Director-Address">
<?php $key="Contact-Director-Address"; echo get_post_meta($post->ID, $key, true); ?>
</div>
<div class="Contact-Director-Phone">
<?php $key="Contact-Director-Phone"; echo get_post_meta($post->ID, $key, true); ?>
</div>
</div>
<div class="span9 floatleft noMargLeft">
<?php the_post_thumbnail('full'); ?>
</div>
</div>
</div>
<?php get_footer(); ?>