forked from codeforamerica/cfawp2012
-
Notifications
You must be signed in to change notification settings - Fork 0
/
onecolumn-page.php
executable file
·36 lines (26 loc) · 985 Bytes
/
onecolumn-page.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?php
/**
* Template Name: One column, no sidebar
*
* A custom page template without sidebar.
*
* The "Template Name:" bit above allows this to be selectable
* from a dropdown menu on the edit page screen.
*
* @package WordPress
* @subpackage Twenty_Ten
* @since Twenty Ten 1.0
*/
get_header(); ?>
<div class="wrap clearfix" id="inner">
<div id="maincontent" class="fullcolumn" style="width: 940px;" >
<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
<div class="entry-content" id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<div class="ttl"><?php the_title(); ?> <a href="#" class="red-btn"><span class="st_sharethis_custom">Share This +</span></a></div>
<?php the_content(); ?>
<?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="edit-link">', '</span>' ); ?>
</div><!-- .entry-content -->
<?php endwhile; ?>
</div><!-- #content -->
</div><!-- #container -->
<?php get_footer(); ?>