From 64ac85e6ffce458239ec1bba665ac500d4fa90f8 Mon Sep 17 00:00:00 2001 From: Erick Hitter <ehitter@gmail.com> Date: Sat, 11 May 2013 14:59:40 -0500 Subject: [PATCH] Pinking shears --- default-template.php | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/default-template.php b/default-template.php index a14c906..96d9371 100644 --- a/default-template.php +++ b/default-template.php @@ -6,7 +6,7 @@ <meta name="robots" content="noindex" /> </head> <body <?php body_class(); ?>> - + <?php if( have_posts() ): while( have_posts() ): @@ -15,29 +15,29 @@ <div <?php post_class(); ?>> <h1><?php the_title(); ?></h1> <p>by <?php the_author(); ?> | <?php the_time( 'F j, Y g:i a' ); ?></p> - + <?php if( is_attachment() && wp_attachment_is_image() ) echo '<p>' . wp_get_attachment_image( $post->ID, 'large' ) . '</p>'; - + the_content(); ?> - + <?php if( function_exists( 'wpf_the_page_numbers' ) ) wpf_the_page_numbers( false, '<p class="page_numbers">Page ', ' of ', '</p><!-- .page_numbers -->' ); ?> - + <p class="wpf-source"><strong>Source URL:</strong> <?php the_permalink(); ?></p> - + <hr class="wpf-divider" /> </div> <?php endwhile; endif; ?> - + <p class="copyright">Copyright ©<?php echo date( 'Y' ); ?> <strong><?php bloginfo( 'name' ); ?></strong> unless otherwise noted.</p> - + </body> </html> \ No newline at end of file -- GitLab