English Need Help

Adding older content to menu

adding a Previous Stories Box

Hello Bernard,

I tried adding into my template.php file a box in the right hand menu that would output the titles of the older stories that had run off the page and used this code:

// Previous stories
echo Skin::build_box('Previous stories', 'include_once 'articles/articles.php';
$items = Articles::list_by_date(16, 36);
$context['text'] .= Skin::build_list($items, 'decorated');', 'extra');


which I gleaned from the sites scripts>articles>articles.php page... but it didn't work.

Any advice?