cabinet/templates/file.html

36 lines
763 B
HTML
Raw Normal View History

2022-01-14 21:32:43 -03:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
2022-01-16 17:58:46 -03:00
<link rel="stylesheet" href="${root}highlight.css"/>
2022-01-15 16:55:28 -03:00
<link rel="stylesheet" href="${root}stylesheet.css"/>
2022-01-16 17:58:46 -03:00
<script>
window.MathJax = {
2022-01-16 18:16:19 -03:00
tex: {
inlineMath: [['$', '$'], ['\\(', '\\)']]
},
options: {
enableMenu: false,
enableEnrichment: false,
makeCollapsible: false
}
2022-01-16 17:58:46 -03:00
};
</script>
<script src="${root}mathjax/es5/tex-mml-chtml.js"></script>
2022-01-14 21:32:43 -03:00
<title>${title}</title>
</head>
<body>
<header>
<h1 id="cabinet">Cabinet file manager</h1>
2022-01-14 21:49:11 -03:00
<div>
2022-01-15 16:55:28 -03:00
<a class="button" id="back" href="${root}index.html">&larr; Back</a>
2022-01-14 21:32:43 -03:00
<span id="path">${path}</span>
2022-01-14 21:49:11 -03:00
<a class="button" id="pdf" href="${pdf}">&darr; PDF</a>
</div>
2022-01-14 21:32:43 -03:00
</header>
<main>
${content}
</main>
</body>
</html>