The best way to do this is to use the "News" Module to add articles to your site. You can separate articles via categories. So they fall in a specified area in your site.
I'm typing fast so sorry for the typos.
Example:
http://abc.fusiondigitalmedia.com/ "What's New and "Upcoming Events" are using the News Module
So go to the "News module" under the "Content" tab
Add a category or just use the default
Add a news story. Note just because it says news doesn't mean it has to be news. By using categories you can use the module for many things concerning automated style story development.
Then put this smarty code block in a page or template
To acheive the look I have on the site above I used the following smarty code in my template
{cms_module module='News' detailpage='events' category="events" number="1"}
Note: number="1" is filtering the story on the home page by 1 story you could make it 2 and it would just show 2 you could remove number="1" and the system will show all stories.
Ex: detailpage='events' means when you click on a story in the events area there is smarty code on a page with an alias of events to pass the info to that page. (You will find a pages alias by creating a page and going to the Options Tab)
As well as adding this smarty code to the detail page (The page that is designated for the specified content)
So this code is in a page with an alias of "events"
{cms_module module='News' detailpage='events' category="events" }
This will pull only the events category.
If you wanted to filter more then one category on a page you could do this
{cms_module module='News' detailpage='events' category="events, news," }
or you could simply do this
{cms_module module='News' detailpage='events' } This will show all news module content on the page with an alias of "events"
To read more about the option the News mod has go to the News module and click on the help to the right of the module in the admin
Shane