cabinet/templates/base.html

13 lines
214 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 18:28:15 -05:00
<a href="../index.html">Back</a>
2022-01-14 18:07:31 -05:00
${content}
</body>
</html>