summaryrefslogtreecommitdiff
blob: 6b8d5e3339531d40db49d8eba661cfc53ec55356 (plain)
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<?php
/**
 * The template for displaying all pages.
 *
 * This is the template that displays all pages by default.
 * Please note that this is the WordPress construct of pages
 * and that other 'pages' on your WordPress site will use a
 * different template.
 *
 * @package WordPress
 * @subpackage Twenty_Ten
 * @since Twenty Ten 1.0
 */

get_header(); ?>

		<div id="container">
			<div id="content" role="main">

<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
                            <div class="plasma-left-top"></div>
                            <div class="plasma-top"></div>
                            <div class="plasma-right-top"></div>
                            <div class="plasma-post-center" >
				<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
					<?php if ( is_front_page() ) { ?>
						<h2 class="entry-title"><?php the_title(); ?></h2>
					<?php } else { ?>
						<h1 class="entry-title"><?php the_title(); ?></h1>
					<?php } ?>

					<div class="entry-content">
						<?php the_content(); ?>
						<?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'twentyten' ), 'after' => '</div>' ) ); ?>
						<?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="edit-link">', '</span>' ); ?>
					</div><!-- .entry-content -->
				</div><!-- #post-## -->
                         </div><!-- plasma-post-center -->
                         <div class="plasma-left-bottom" ></div>
                         <div class="plasma-bottom" ></div>
                         <div class="plasma-right-bottom" ></div>
                         <div class="plasma-left-top"></div>
                         <div class="plasma-top"></div>
                         <div class="plasma-right-top"></div>
                         <div class="plasma-post-center" >
				<?php comments_template( '', true ); ?>
                         </div><!-- plasma-post-center -->
                         <div class="plasma-left-bottom" ></div>
                         <div class="plasma-bottom" ></div>
                         <div class="plasma-right-bottom" ></div>
<?php endwhile; ?>

			</div><!-- #content -->
		</div><!-- #container -->

<?php get_sidebar(); ?>
<?php get_footer(); ?>