<template id="recent">
<doctype type="xhtml1strict" />
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>%title%</title>
<style type="text/css">
body {
  font-family: georgia;
  margin: 2em;
}
</style>
</head>
<body>
<h1>%title%</h1>

<sql id="recent">
select title
from entries 
order by added desc
limit 0, %limit%
</sql>

<ul>
<output sql="recent">
<li>%title%</li>
</output>
</ul>

</body>
</html>
</template>
