<?php 
    $template="music_template.txt";
    include_once 'header.php';

    $render->replace('title', 'literal','Music');
    $render->add('header', 'Music');
            // retrieve most recent selected postings
    $render->replace('subhead', 'heading', 'Music News');
    $posts = array_reverse(get_links('music', 5));
    if (count($posts)) {
	reset($posts);
	while (list($i, $post) = each($posts)) {
	    $render->push('totalnews');
	    $render->add('newsarticle', $post);
	    $render->pop();
	}
    }
$render->replace('subhead', 'header', 'Music News');

$render->replace('aughead','header','Augusta News');

//put the links in the link box
        $other_posts = array_reverse(get_links('augusta',10));
    if (!count($other_posts))
	$other_posts = array();
    reset($other_posts);
    while (list($i, $post) = each($other_posts)) {
	$render->push('headlines');
	$render->add ('most_recent_nd',$post);
	$render->pop();

    }





    include_once 'footer.php';
?>
