<?php
$template = 'Template1';
#if specified this template will be used, if not the default will be used
$cat = 'category1';
#if specified this category will be used, if any posts that have not been assigned a category will be displayed
#you can also show all categories by using $cat = 'all';
include 'path/to/news/index.php'; #example 'news/index.php';
?>
$author = 'Chris';
#if specified then only articles for this author will be shown
<a href="nouvelles.php?id={id}">{title}</a><br />
<style>
a {
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
<a href="nouvelles.php?id={id}">{title}</a><br />
<?php
$author = 'al';
$template = "Plain style";
$cat[] = "Nouvelles";
include '../news/index.php';
?>