1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
| <?php session_start(); include('snews.php'); ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<?php title(); ?>
<meta name="Robots" content="index,follow" />
<meta name="Generator" content="sNews 1.6" />
<link rel="stylesheet" type="text/css" href="style.css" media="screen" />
<link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="rss-articles/" />
<link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="rss-pages/" />
<link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="rss-comments/" />
</head>
<body>
<div class="wrap">
<div id="logo">
<h1><?php echo s('website_title'); ?></h1>
</div>
<ul id="menu">
<?php pages(); ?>
</ul>
<div id="subheader">
<div id="breadcrumbs">
<?php breadcrumbs(); ?>
</div>
<div id="search">
<?php searchform(); ?>
</div>
</div>
<div id="left">
<h3>Categories:</h3>
<ul>
<?php categories(); ?>
</ul>
<h3>New Articles:</h3>
<ul>
<?php menu_articles(0,3); ?>
</ul>
<h3>New comments:</h3>
<ul>
<?php new_comments(5, 30); ?>
</ul>
<?php extra(); ?>
</div>
<div id="right">
<?php center(); ?>
</div>
<div id="footer">
<ul id="rss">
<?php rss_links(); ?>
</ul>
<p>Barbecued by <a href="http://snewscms.com/" title="Single file CMS">sNews</a> · <?php login_link(); ?></p>
</div>
</div>
</body>
</html> |
Partager