<?php
if($_GET['id']){
// viewing a full article use full story template
$template = 'fullstory';
}else{
// not viewing a full article, use the normal template
$template = 'news';
}
include 'news/index.php';
?>
<?php
if($_GET['id']){
// This means you are currently viewing the a single article, the full story
// So what you want to do is assign a different template to be used
// In this example we've named the template 'fullstory'
// If you edit/create that template via Options > Templates
// So that there is no {summary} tag in the 'News' section then the
// Summary should no longer show when viewing the full article
$template = 'fullstory';
}else{
// This means that we're currently not viewing a single article so we don't
// Need to change the template. So either specify which template to use below
// Or remove the $template = '' line completely.
$template = 'news';
}
include 'news/index.php';
?>