2020-02-03 11:49:19 +13:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<title>n.eko</title>
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
|
|
|
|
<meta name="description" content="A self hosted virtual browser (rabb.it clone) that runs in docker">
|
|
|
|
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
2020-02-10 13:59:08 +13:00
|
|
|
<link rel="stylesheet" href="//unpkg.com/docsify/lib/themes/dark.css">
|
2020-02-03 11:49:19 +13:00
|
|
|
<style>
|
|
|
|
.app-name img { max-width: 70%; }
|
|
|
|
nav.app-nav li ul { min-width: 100px; }
|
2020-02-10 13:59:08 +13:00
|
|
|
.search { border-bottom: 1px solid rgba(0,0,0,.07) !important; }
|
|
|
|
.search .matching-post { border-bottom: 1px solid rgba(0,0,0,.3) !important; }
|
|
|
|
section tr:nth-child(2n) { background-color: #333333 !important; }
|
|
|
|
.markdown-section td, .markdown-section th { border: 1px solid #777 !important; }
|
2020-02-03 11:49:19 +13:00
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="app"></div>
|
|
|
|
<script>
|
|
|
|
window.$docsify = {
|
2020-02-10 13:59:08 +13:00
|
|
|
logo: '/_media/logo.png',
|
2020-02-03 11:49:19 +13:00
|
|
|
formatUpdated: '{MM}/{DD} {HH}:{mm}',
|
|
|
|
auto2top: true,
|
|
|
|
coverpage: true,
|
|
|
|
loadSidebar: true,
|
|
|
|
mergeNavbar: true,
|
|
|
|
loadSidebar: true,
|
|
|
|
autoHeader: true,
|
|
|
|
maxLevel: 4,
|
|
|
|
subMaxLevel: 2,
|
|
|
|
name: 'neko',
|
|
|
|
repo: 'nurdism/neko',
|
2020-02-10 13:59:08 +13:00
|
|
|
themeColor: '#19bd9c'
|
2020-02-03 11:49:19 +13:00
|
|
|
}
|
|
|
|
</script>
|
|
|
|
<script src="//unpkg.com/docsify/lib/docsify.min.js"></script>
|
|
|
|
<script src="//unpkg.com/docsify-copy-code"></script>
|
|
|
|
<script src="//unpkg.com/docsify/lib/plugins/search.min.js"></script>
|
|
|
|
<script src="//unpkg.com/prismjs/components/prism-bash.min.js"></script>
|
|
|
|
<script src="//unpkg.com/prismjs/components/prism-go.min.js"></script>
|
|
|
|
</body>
|
|
|
|
</html>
|