cabinet/templates/file.html

35 lines
968 B
HTML
Raw Normal View History

2022-01-14 19:32:43 -05:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
2022-01-17 18:17:17 -05:00
<link rel="stylesheet" href="${root}bootstrap/css/bootstrap.min.css"/>
2022-01-16 15:58:46 -05:00
<link rel="stylesheet" href="${root}highlight.css"/>
2022-01-15 14:55:28 -05:00
<link rel="stylesheet" href="${root}stylesheet.css"/>
2022-01-17 18:17:17 -05:00
<script src="${root}jquery.js"></script>
<script src="${root}bootstrap/js/bootstrap.bundle.min.js"></script>
2022-01-16 15:58:46 -05:00
<script>
window.MathJax = {
2022-01-16 16:16:19 -05:00
options: {
enableMenu: false,
2022-01-16 16:38:52 -05:00
enableEnrichment: false
2022-01-16 16:16:19 -05:00
}
2022-01-16 15:58:46 -05:00
};
</script>
<script src="${root}mathjax/es5/tex-mml-chtml.js"></script>
2022-01-14 19:32:43 -05:00
<title>${title}</title>
</head>
<body>
2022-01-17 18:17:17 -05:00
<header class="container-fluid">
2022-01-17 17:48:37 -05:00
<h1 id="cabinet"><img id="cabinet-icon" src="${root}cabinet.png"/>Cabinet</h1>
</header>
2022-01-17 18:17:17 -05:00
<nav class="container-fluid">
2022-01-15 14:55:28 -05:00
<a class="button" id="back" href="${root}index.html">&larr; Back</a>
2022-01-14 19:32:43 -05:00
<span id="path">${path}</span>
2022-01-14 19:49:11 -05:00
<a class="button" id="pdf" href="${pdf}">&darr; PDF</a>
2022-01-17 17:48:37 -05:00
</nav>
2022-01-17 18:17:17 -05:00
<main class="container">
2022-01-14 19:32:43 -05:00
${content}
</main>
</body>
</html>