I need to create a custom page that displays the posts like a category page. The top of the type of page says category archive: …. It lists each post with date, author, and a button to read more. My mobile theme loads pages and not categories. So I created a custom page with template with this code.
query_posts('cat=10');
while (have_posts()) : the_post();
the_content();
endwhile;
?>
<?php get_footer(); ?>
But it is not foratted the way I want.