_e('Article Information', 'pure-simple');
?>
</h2>
		
		<?php 
if (get_the_modified_time() != get_the_time()) {
    _e('Last Modified on ', 'pure-simple');
    the_modified_date();
    echo '<br>';
}
/* translators: used between list items, there is a space after the comma */
$category_list = get_the_category_list(__(', ', 'pure-simple'));
/* translators: used between list items, there is a space after the comma */
$tag_list = get_the_tag_list('', __(', ', 'pure-simple'));
$parent_title = get_the_title($post->post_parent);
if (!puresimple_categorized_blog()) {
    // This blog only has 1 category so we just need to worry about tags in the meta text
    if ('' != $tag_list) {
        $meta_text = __('This entry was tagged with %2$s <br />this article <a href="%3$s" rel="bookmark">', 'pure-simple') . $parent_title . '</a><br />';
    } else {
        $meta_text = __('this article <a href="%3$s" rel="bookmark">', 'pure-simple') . $parent_title . '</a><br />';
    }
} else {
    // But this blog has loads of categories so we should probably display them here
    if ('' != $tag_list) {
        $meta_text = __('This entry was posted in %1$s <br />Tagged with %2$s <br />Bookmark this article <a href="%3$s" rel="bookmark">', 'pure-simple') . $parent_title . '</a><br />';
    } else {
        $meta_text = __('This entry was posted in %1$s <br />Bookmark this article <a href="%3$s" rel="bookmark">', 'pure-simple') . $parent_title . '</a><br />';
    }
}
// end check for categories on this blog
	<div class="entry-summary">
		<?php 
the_excerpt();
?>
	</div><!-- .entry-summary -->

	<footer class="entry-footer">
		<?php 
if ('post' == get_post_type()) {
    // Hide category and tag text for pages on Search
    ?>
			<?php 
    /* translators: used between list items, there is a space after the comma */
    $categories_list = get_the_category_list(__(', ', 'pure-simple'));
    if ($categories_list && puresimple_categorized_blog()) {
        ?>
			<span class="cat-links">
				<?php 
        printf(__('Posted in %1$s', 'pure-simple'), $categories_list);
        ?>
			</span>
			<?php 
    }
    // End if categories
    ?>

			<?php 
    /* translators: used between list items, there is a space after the comma */
    $tags_list = get_the_tag_list('', __(', ', 'pure-simple'));
    if ($tags_list) {