<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
[% USE CGI %]
<html>
<head>
  <title>[% node_name %] - [% site_name %]</title>
  [% IF contact_email %]
    <link rev=made href="mailto:[% contact_email %]">
  [% END %]
  [% IF description %]
    <meta name="description" content="[% description %]">
  [% END %]
  [% IF keywords %]
    <meta name="keywords" content="[% keywords %]">
  [% END %]
  [% IF stylesheet %]
    <link rel="stylesheet" href="[% stylesheet %]" type="text/css">
  [% END %]
</head>
<body>

[% INCLUDE banner.tt %]

<div id="content">

[% IF navbar_on_home_page %]
  [% INCLUDE navbar.tt %]
[% END %]

<div id="recent">

<h3>Ten most <a href="[% cgi_url %]?RecentChanges">recent changes</a>
    (<a href="[% full_cgi_url %]?action=rss">RSS</a>):</h3>

<dl>
  [% FOREACH node = recent_changes %]
  <dt><a href="[% node.url %]">[% node.name %]</a></dt>
  [% IF node.comment or node.username %]
    <dd>
      [% node.comment %]
      [% IF node.username %]
        <b><small>([% node.username %])</small></b>
      [% END %]
    </dd>
  [% END %]
[% END %]
</dl>

<p><b><a href="[% cgi_url %]?action=edit;id=[% node_param %]">Edit this page</a></b></p>

</div>
[% content %]

[% INCLUDE footer.tt %]