diff --git a/default-template.php b/default-template.php index a14c906e94f64cb4abeedb7090166c836f97f7fe..96d937114deeefcb960f20575063128cbdb73242 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