The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: https://develop.svn.wordpress.org/trunk@21261 602fd350-edb4-49c9-b593-d223f7449a82
2012-07-12 06:20:46 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2012-09-18 19:28:36 +02:00
|
|
|
* Template Name: Front Page Template
|
2012-08-28 19:12:10 +02:00
|
|
|
*
|
2012-09-25 21:58:33 +02:00
|
|
|
* Description: A page template that provides a key component of WordPress as a CMS
|
|
|
|
* by meeting the need for a carefully crafted introductory page. The front page template
|
|
|
|
* in Twenty Twelve consists of a page content area for adding text, images, video --
|
2012-10-25 18:06:21 +02:00
|
|
|
* anything you'd like -- followed by front-page-only widgets in one or two columns.
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: https://develop.svn.wordpress.org/trunk@21261 602fd350-edb4-49c9-b593-d223f7449a82
2012-07-12 06:20:46 +02:00
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Twenty_Twelve
|
|
|
|
* @since Twenty Twelve 1.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
get_header(); ?>
|
|
|
|
|
2012-08-02 21:12:11 +02:00
|
|
|
<div id="primary" class="site-content">
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: https://develop.svn.wordpress.org/trunk@21261 602fd350-edb4-49c9-b593-d223f7449a82
2012-07-12 06:20:46 +02:00
|
|
|
<div id="content" role="main">
|
|
|
|
|
2012-08-01 20:52:20 +02:00
|
|
|
<?php while ( have_posts() ) : the_post(); ?>
|
2012-08-25 19:16:56 +02:00
|
|
|
<?php if ( has_post_thumbnail() ) : ?>
|
2012-08-01 20:52:20 +02:00
|
|
|
<div class="entry-page-image">
|
|
|
|
<?php the_post_thumbnail(); ?>
|
2012-08-25 19:16:56 +02:00
|
|
|
</div><!-- .entry-page-image -->
|
|
|
|
<?php endif; ?>
|
2012-08-01 20:52:20 +02:00
|
|
|
|
|
|
|
<?php get_template_part( 'content', 'page' ); ?>
|
|
|
|
|
|
|
|
<?php endwhile; // end of the loop. ?>
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: https://develop.svn.wordpress.org/trunk@21261 602fd350-edb4-49c9-b593-d223f7449a82
2012-07-12 06:20:46 +02:00
|
|
|
|
|
|
|
</div><!-- #content -->
|
2012-08-25 19:16:56 +02:00
|
|
|
</div><!-- #primary -->
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: https://develop.svn.wordpress.org/trunk@21261 602fd350-edb4-49c9-b593-d223f7449a82
2012-07-12 06:20:46 +02:00
|
|
|
|
2012-09-18 19:28:36 +02:00
|
|
|
<?php get_sidebar( 'front' ); ?>
|
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: https://develop.svn.wordpress.org/trunk@21261 602fd350-edb4-49c9-b593-d223f7449a82
2012-07-12 06:20:46 +02:00
|
|
|
<?php get_footer(); ?>
|