-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (47 loc) · 1.48 KB
/
index.html
File metadata and controls
50 lines (47 loc) · 1.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Mapping A Website's Internal Links - Bret Bernhoft</title>
<script src="https://d3js.org/d3.v6.min.js"></script>
<link rel="stylesheet" href="main.css" />
<link
rel="icon"
href="https://hosting.photobucket.com/bbcfb0d4-be20-44a0-94dc-65bff8947cf2/ff4a3384-baa9-4bc2-94c9-6bff4e3d3ea0.png"
sizes="any"
/>
</head>
<body>
<div id="scorecard" class="scorecard">
<h3>Website Scorecard</h3>
<ul id="scorecard-list"></ul>
</div>
<div id="scorecard-right" class="scorecard">
<h3>Node Scorecard</h3>
<ul id="tooltip-scorecard-list"></ul>
<div id="claude-analysis-section">
<h3>Claude AI Analysis</h3>
<button id="analyze-node-button">Get Claude Analysis</button>
<p
id="claude-analysis-output"
style="margin-top: 0.5rem; white-space: pre-wrap"
></p>
</div>
</div>
<div id="filters-box" class="scorecard filters-box">
<h4>Website Search</h4>
<div class="scorecard-search">
<input
id="node-search"
type="search"
placeholder="Filter nodes by keyword(s)…"
autocomplete="off"
spellcheck="false"
/>
<button id="node-search-clear" title="Clear search">x</button>
</div>
</div>
<script src="main.js"></script>
</body>
</html>