Below is the file 'templates/choosedb.html' from this revision. You can also download the file.
<?xml version="1.0" encoding="UTF-8"?> <!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" lang="en" xml:lang="en"> <head> <title>ViewMTN: $(page_title)</title> <link rel="stylesheet" href="$static_join('viewmtn.css')" type="text/css" media="screen" /> <link rel="stylesheet" href="$static_join('highlight.css')" type="text/css" media="screen" /> </head> <body> <div id="menuBar"> <strong>ViewMTN — choose database to access</strong> </div> <p> Welcome to this ViewMTN installation. Please select the <a href="http://www.monotone.ca/monotone/">Monotone</a> database you wish to access from the table below. </p> <table class="pretty"> <tr><th>Database</th><th>Description</th></tr> #for db in $databases <tr> <td valign="top"> <a href="$nodb_join($db.name)/">$db.name</a> </td> <td> $db.description </td> </tr> #end for </table> <div id="footer"> ViewMTN $version<br /> </div> </body> </html>