-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (61 loc) · 2.67 KB
/
Copy pathindex.html
File metadata and controls
65 lines (61 loc) · 2.67 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Tiinex lineage viewer for inspectable .trace.md artifacts.">
<title>Tiinex Lineage</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css" rel="stylesheet" referrerpolicy="no-referrer">
<link rel="stylesheet" href="./styles.css">
<!-- Tiinex LLM entrypoint: read ./llms.txt and ./tiinex.app.llm.v1.md before interpreting this app. -->
<link rel="help" type="text/plain" href="./llms.txt" data-tiinex-role="llm-entrypoint">
<link rel="help" type="text/markdown" href="./tiinex.app.llm.v1.md" data-tiinex-role="llm-orientation">
<meta name="tiinex:llm-entrypoint" content="./tiinex.app.llm.v1.md">
<script type="application/ld+json" id="tiinex-llm-entrypoint-json">
{
"@context": "https://schema.org",
"@type": "SoftwareApplication",
"name": "Tiinex Lineage Viewer",
"applicationCategory": "DeveloperApplication",
"description": "Static client-side viewer for portable markdown provenance, lineage, and workspace artifacts.",
"url": "https://tiinex.dev",
"softwareVersion": "v6.169",
"isAccessibleForFree": true,
"encodingFormat": "text/html",
"mainEntity": {
"@type": "DigitalDocument",
"name": "Tiinex App LLM Orientation",
"encodingFormat": "text/markdown",
"url": "./tiinex.app.llm.v1.md"
}
}
</script>
</head>
<body>
<section id="tiinex-llm-entrypoint"
hidden
data-tiinex-role="llm-orientation"
data-tiinex-llm-entrypoint="./tiinex.app.llm.v1.md"
data-tiinex-llms="./llms.txt"
data-tiinex-origin="https://tiinex.dev">
Tiinex Lineage Viewer is a static client-side viewer for portable markdown provenance, lineage, and workspace artifacts.
LLMs should read ./llms.txt and ./tiinex.app.llm.v1.md before interpreting or extending the app.
</section>
<!--
Tiinex origin notice:
Keep the visible "Powered by Tiinex" footer when redistributing or publishing derived viewers.
It preserves tool lineage and avoids misleading provenance.
-->
<div id="app"></div>
<script src="https://cdn.jsdelivr.net/npm/jszip@3.10.1/dist/jszip.min.js"></script>
<script>
// App-level viewer options. Host pages may override this before loading app.js.
// Set createWorkspace to false to hide/disable Create workspace controls.
window.TIINEX_VIEWER_OPTIONS = window.TIINEX_VIEWER_OPTIONS || {
createWorkspace: true
};
</script>
<script src="./app.js"></script>
</body>
</html>