cabinet/templates/file.html

20 lines
370 B
HTML
Raw Normal View History

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