generated from nhcarrigan/template
108 lines
3.3 KiB
HTML
108 lines
3.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<link
|
|
rel="stylesheet"
|
|
href="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/css/theme-simple-dark.css"
|
|
/>
|
|
<style>
|
|
:root {
|
|
--theme-color: #3a3240;
|
|
--mono-hue: 255;
|
|
--theme-hue: 255;
|
|
--mono-tint3: #3a3240;
|
|
--mono-tint2: #3a3240;
|
|
--mono-tint1: #3a3240;
|
|
--base-color: #3a3240;
|
|
--heading-color: #3a3240;
|
|
--base-background-color: #fff;
|
|
--sidebar-background: #abfcecdd;
|
|
--sidebar-nav-link-color: #3a3240;
|
|
--code-inline-background: #3a3240;
|
|
--table-row-odd-background: #abfcec;
|
|
}
|
|
|
|
body::before {
|
|
background: url(https://cdn.nhcarrigan.com/banner.png);
|
|
background-size: cover;
|
|
background-position: center;
|
|
width: 100%;
|
|
height: 100%;
|
|
z-index: -1;
|
|
content: "";
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
bottom: 0;
|
|
right: 0;
|
|
opacity: 1;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.sidebar-nav > h1 {
|
|
font-size: var(--modular-scale-2);
|
|
}
|
|
|
|
.sidebar-toggle .sidebar-toggle-button {
|
|
color: #fff;
|
|
}
|
|
|
|
.content {
|
|
background: transparent;
|
|
}
|
|
|
|
.markdown-section {
|
|
background: #abfceccc;
|
|
}
|
|
</style>
|
|
<title>Naomi's Documentation</title>
|
|
</head>
|
|
<body>
|
|
<div id="app">
|
|
<h1>Naomi's Documentation</h1>
|
|
<p>Documentation for my various smaller projects.</p>
|
|
</div>
|
|
</body>
|
|
<script>
|
|
window.$docsify = {
|
|
loadSidebar: "_navbar.md",
|
|
autoHeader: true,
|
|
maxLevel: 2,
|
|
subMaxLevel: 3,
|
|
homepage: "index.md",
|
|
auto2top: true,
|
|
// Plugins
|
|
"flexible-alerts": {
|
|
style: "flat",
|
|
},
|
|
copyCode: {
|
|
buttonText: "Copy this snippet",
|
|
errorText: "Could not copy!",
|
|
successText: "Copied to clipboard",
|
|
},
|
|
};
|
|
</script>
|
|
<!-- Docsify v4 -->
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/docsify/4.13.1/docsify.min.js"></script>
|
|
<script src="https://cdn.jsdelivr.net/npm/docsify-plugin-flexible-alerts@1"></script>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/components/prism-typescript.min.js"></script>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/components/prism-markdown.min.js"></script>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/components/prism-ini.min.js"></script>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/components/prism-bash.min.js"></script>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/components/prism-json.min.js"></script>
|
|
<script src="https://unpkg.com/docsify-copy-code@2"></script>
|
|
<script
|
|
src="https://browser.sentry-cdn.com/6.3.6/bundle.min.js"
|
|
integrity="sha384-Wh1kaX6+TxjSQdRRE+XUoIsEh5Cj8LgB6Wjbg/1/kTB3aG7q6ORaKSe5VfThKhcj"
|
|
crossorigin="anonymous"
|
|
></script>
|
|
<script
|
|
src="https://browser.sentry-cdn.com/6.3.6/bundle.tracing.min.js"
|
|
integrity="sha384-i2Yvbs5RFObbcbRhpGsmI2wLv+I4jxpEET1WzR/KWxLdwZMtP8E1M0PROnrwe2gF"
|
|
crossorigin="anonymous"
|
|
></script>
|
|
</html>
|