Hi, I’m completely new to EE so apologies if this is a stupid question!
I want to do this (from the EE PB 2.0 Overview - http://expressionengine.com/public_beta/docs/overview/index.html ):
Your magazine has a home page that lists summaries of the five most recent articles. Each article summary links to a page with the complete text of the article. Your site also has an archive page that lists all the articles you’ve ever published.
Can you point me in the direction of a tutorial or something that shows how to make an archive page that sits at
mysite.com/blog
with the individual articles sitting at
mysite.com/blog/post_title
I’ve done the Getting Started tutorial. From that I learned how to set up this single template
{exp:channel:entries channel="blog"}
{title}
{/exp:channel:entries}If I visit mysite.com/blog, I get the titles for all of my individual blog entries.
If I visit mysite.com/blog/post_title, I just get the title for that post.
I want the archive page (mysite.com/blog) to use a different template to the individual article page (mysite.com/blog/post_title)... how?
Thanks in advance 😊