36 lines
763 B
HTML
36 lines
763 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8"/>
|
|
<link rel="stylesheet" href="${root}highlight.css"/>
|
|
<link rel="stylesheet" href="${root}stylesheet.css"/>
|
|
<script>
|
|
window.MathJax = {
|
|
tex: {
|
|
inlineMath: [['$', '$'], ['\\(', '\\)']]
|
|
},
|
|
options: {
|
|
enableMenu: false,
|
|
enableEnrichment: false,
|
|
makeCollapsible: false
|
|
}
|
|
};
|
|
</script>
|
|
<script src="${root}mathjax/es5/tex-mml-chtml.js"></script>
|
|
<title>${title}</title>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1 id="cabinet">Cabinet file manager</h1>
|
|
<div>
|
|
<a class="button" id="back" href="${root}index.html">← Back</a>
|
|
<span id="path">${path}</span>
|
|
<a class="button" id="pdf" href="${pdf}">↓ PDF</a>
|
|
</div>
|
|
</header>
|
|
<main>
|
|
${content}
|
|
</main>
|
|
</body>
|
|
</html>
|