tahoe-lafs/src/allmydata/web/manifest.xhtml

31 lines
704 B
HTML
Raw Normal View History

2019-11-05 06:38:43 +00:00
<html xmlns:t="http://twistedmatrix.com/ns/twisted.web.template/0.1">
<head>
2019-11-05 06:38:43 +00:00
<title t:render="title"></title>
2011-11-17 21:49:23 +00:00
<link href="/tahoe.css" rel="stylesheet" type="text/css"/>
<link href="/icon.png" rel="shortcut icon" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
2019-11-05 06:38:43 +00:00
<meta t:render="refresh" />
</head>
<body>
2019-11-05 06:38:43 +00:00
<h1><p t:render="header"></p></h1>
2019-11-05 06:38:43 +00:00
<h2 t:render="reload" />
2019-11-05 06:38:43 +00:00
<table t:render="items">
<tr t:pattern="header">
<td>Path</td>
<td>cap</td>
</tr>
2019-11-05 06:38:43 +00:00
<tr t:render="item">
<td><t:slot name="path"/></td>
<td><t:slot name="cap"/></td>
</tr>
2019-11-05 06:38:43 +00:00
<tr t:render="empty"><td>no items in the manifest!</td></tr>
</table>
</body>
</html>