cabinet/templates/dir.html

19 lines
369 B
HTML
Raw Normal View History

2022-01-14 18:07:31 -05:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<link rel="stylesheet" href="stylesheet.css"/>
<title>${title}</title>
</head>
<body>
2022-01-14 19:32:43 -05:00
<header>
<h1 id="cabinet">Cabinet file manager</h1>
2022-01-14 19:49:11 -05:00
<a class="button" id="back" href="../index.html">&larr; Back</a>
2022-01-14 19:32:43 -05:00
<span id="path">${path}</span>
</header>
<main>
2022-01-14 18:07:31 -05:00
${content}
2022-01-14 19:32:43 -05:00
</main>
2022-01-14 18:07:31 -05:00
</body>
</html>