Skip to content

Commit 0e23465

Browse files
committed
set up simple docs site using docsify
1 parent b97cb1e commit 0e23465

File tree

3 files changed

+33
-0
lines changed

3 files changed

+33
-0
lines changed

.nojekyll

Whitespace-only changes.

_sidebar.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
- [Home](/)
2+
- [Available Tools](TOOLS.md)

index.html

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>Iterable MCP Server</title>
6+
<meta name="description" content="Talk to your Iterable data using natural language">
7+
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
8+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsify@4/lib/themes/vue.css">
9+
<style>
10+
.sidebar > h1 { text-align: left; padding-left: 1rem; }
11+
.app-name-link { font-weight: bold; }
12+
.app-name-link img { vertical-align: middle; margin-right: 6px; border-radius: 4px; }
13+
.sidebar ul li a { font-size: 1rem; }
14+
</style>
15+
</head>
16+
<body>
17+
<div id="app"></div>
18+
<script>
19+
window.$docsify = {
20+
name: '<img src="https://github.com/Iterable.png" width="28" alt="Iterable"> Iterable MCP Server',
21+
repo: 'https://github.com/Iterable/mcp-server',
22+
loadSidebar: true,
23+
subMaxLevel: 2,
24+
search: 'auto',
25+
auto2top: true,
26+
}
27+
</script>
28+
<script src="https://cdn.jsdelivr.net/npm/docsify@4/lib/docsify.min.js"></script>
29+
<script src="https://cdn.jsdelivr.net/npm/docsify@4/lib/plugins/search.min.js"></script>
30+
</body>
31+
</html>

0 commit comments

Comments
 (0)