49 lines
1.5 KiB
HTML
49 lines
1.5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>DMF Docs</title>
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
|
|
<meta
|
|
name="description"
|
|
content="The Darktide Mod Framework is an open-source, community-run framework of modules that provides enhanced modding capabilities and support."
|
|
/>
|
|
<meta
|
|
name="viewport"
|
|
content="width=device-width, initial-scale=1.0, minimum-scale=1.0"
|
|
/>
|
|
<link
|
|
rel="stylesheet"
|
|
href="https://cdn.jsdelivr.net/npm/docsify@4/lib/themes/vue.css"
|
|
/>
|
|
<style>
|
|
h1.app-name {
|
|
font-weight: 900;
|
|
text-transform: uppercase;
|
|
font-family: system-ui, "Helvetica Neue", Arial, sans-serif;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<script>
|
|
var repo = "Darktide-Mod-Framework/Darktide-Mod-Framework";
|
|
window.$docsify = {
|
|
name: "Darktide Mod Framework",
|
|
repo,
|
|
basePath: `https://raw.githubusercontent.com/wiki/${repo}/`,
|
|
coverpage: false,
|
|
alias: {
|
|
"/.*/_sidebar.md": "/_sidebar.md",
|
|
},
|
|
loadSidebar: true,
|
|
auto2top: true,
|
|
search: "auto",
|
|
};
|
|
</script>
|
|
<!-- Docsify v4 -->
|
|
<script src="https://cdn.jsdelivr.net/npm/docsify@4"></script>
|
|
<script src="https://cdn.jsdelivr.net/npm/docsify/lib/plugins/search.min.js"></script>
|
|
<script src="https://cdn.jsdelivr.net/npm/prismjs@1.29.0/components/prism-lua.min.js"></script>
|
|
</body>
|
|
</html>
|