>
				<?php 
sb_page_title();
?>
				<div class="entry-content">
					
					<?php 
the_content();
?>

					<?php 
edit_post_link(__('Edit', 'startbox'), '<span class="edit-link">', '</span>');
?>
					
					<?php 
sb_sitemap();
?>
					
				</div><!-- .entry-content -->
			</div><!-- .post -->
			
		<?php 
sb_after_content();
?>

		<?php 
comments_template('', true);
?>

		</div><!-- #content -->
	</div><!-- #container -->
Example #2
0
function sb_404_content()
{
    echo '<p>' . sprintf(__('Sorry, but we were unable to find what you were looking for. Try searching or browsing our content below. If you still can\'t find it, %sContact Us%s and we\'ll try to&nbsp;help!', 'startbox'), '<a href="' . apply_filters('sb_404_contact', home_url() . '/contact/') . '">', '</a>') . '</p>';
    get_template_part('searchform');
    echo '<br/>';
    sb_sitemap();
}