Make sure to use the docs! I’ve been using EE going on 2 years now and I’m still in the docs all the time checking things. Get very familiar with the weblog:entries tag as you will be using it all over the place!
The trick behind the “read more” links is the url_title_path. I went to http://expressionsengine.com/docs/ and typed “url_title_path” and I ended up here.
If I were you, I’d get very familiar with the weblog:entries Parameters page. Read that page and you will begin to understand how powerful filtering can be in EE.
You’re getting the idea. You’ll understand after a while why I put dynamic=“off” in there. What this code means:
{exp:weblog:entries weblog="design" dynamic="off" limit="3"}
{title}
{summary}
<a href="http://{url_title_path=design/article}">Read more…</a>
{/exp:weblog:entries}
Is that: we will pull three entries from the “design” weblog (assuming you have a weblog named “design”. Dynamic =“off” sort of means “we don’t care where we are on the site, I want specifically what I’m asking for…so EE stay out of my way and don’t do anything automatically (sort of an “override” if you will). We’re going to limit it to only three items. Then we output the title and summary for each of the three. THEN, EE more or less automatically makes a link to a page on which we will do something else…in this case you’ll probably want to show the whole article on the page we’re linking to.
On an “article” template, in your “design” group, you might have the following, in its most basic form:
{exp:weblog:entries weblog="design" require_entry="yes"}
{if no_results}Sorry! Article not found!{/if}
{title}
{body}
{/exp:weblog:entries}
This may look simple, but really, EE can be pretty simple when you start “getting it”. Does that help you out? Cause I need to get to some work! 😉