'. get_the_title() .'';
// the post information
echo '
written by '.get_the_author(). ', ' .get_the_date(get_option("date_format")). '
';
// content
the_content();
// link pages
amez_link_pages();
// display post tags/keywords
amez_post_tags();
// check if comments are open
if (comments_open()) {
comments_template();
}
?>