
Email Adress Encoder - page.php
By:
digitalCULT on
Jan 18th, 2013 | syntax:
PHP | size: 0.59 KB | hits: 15 | expires: Never
<?php
/**
* Page
*
* Loop container for page content
*
* @package WordPress
* @subpackage Foundation, for WordPress
* @since Foundation, for WordPress 1.0
*/
get_header(); ?>
<!-- Main Content -->
<div class="six columns offset-by-one content">
<?php if ( have_posts() ) : ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'content', 'page' ); ?>
<?php endwhile; ?>
<?php endif; ?>
<hr />
<p><a href="#">Zum Seitenanfang</a></p>
</div>
<!-- end of .content -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>