Hey,
The news items are stored in the "news" table in the database so you could do a query similar to how the games are listed and list the last 10 news items:
SELECT * FROM news WHERE status = 1 ORDER BY id DESC LIMIT 10
And then display the news in some fashion. The above will display based on news item id, replace "id" with "date" to sort by the date instead.
"title" and "text" and "date" are the other fields in this table.