mirror of
https://github.com/open-goal/jak-project
synced 2026-07-31 00:14:38 -04:00
fab73cab75
* docs: move markdown documentation to be caught by docsify * docs: Initial spike of project status / doc portal * docs: Add searchbar to docsify page * docs: Remove the package-lock.json file, not critical for us * docs: Fix search plugin link * docs: Fix search results colors * docs: Remove the navbar, now redundant.
33 lines
883 B
HTML
33 lines
883 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" href="/favicon.png">
|
|
<title>OpenGOAL - API Docs</title>
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
|
|
<meta name="description" content="Description" />
|
|
<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"
|
|
/>
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<script>
|
|
window.$docsify = {
|
|
name: "OpenGOAL Docs",
|
|
repo: "https://github.com/water111/jak-project",
|
|
basePath: "markdown/",
|
|
loadSidebar: true,
|
|
subMaxLevel: 2,
|
|
};
|
|
</script>
|
|
<!-- Docsify v4 -->
|
|
<script src="https://cdn.jsdelivr.net/npm/docsify@4"></script>
|
|
</body>
|
|
</html>
|