-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefault.html
More file actions
86 lines (86 loc) · 3.95 KB
/
Copy pathdefault.html
File metadata and controls
86 lines (86 loc) · 3.95 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!doctype html>
<html lang="{{ site.lang | default: 'en' }}">
<head>
{% assign seo_title = page.title | default: site.title %}
{% if page.title and page.title != site.title %}
{% assign document_title = seo_title | append: ' | ' | append: site.title %}
{% else %}
{% assign document_title = site.title | append: ' | Local-first agent runtime' %}
{% endif %}
{% assign seo_description = page.description | default: site.description %}
{% assign canonical_url = page.url | absolute_url %}
{% assign seo_image = page.image | default: site.image | absolute_url %}
{% assign repository_url = site.repository | prepend: 'https://github.com/' %}
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{{ document_title | escape }}</title>
<meta name="description" content="{{ seo_description | strip_newlines | escape }}">
<meta name="robots" content="index,follow,max-snippet:-1,max-image-preview:large">
<meta name="googlebot" content="index,follow,max-snippet:-1,max-image-preview:large">
{% if site.keywords %}
<meta name="keywords" content="{{ site.keywords | join: ', ' | escape }}">
{% endif %}
{% if site.google_site_verification %}
<meta name="google-site-verification" content="{{ site.google_site_verification | escape }}">
{% endif %}
<link rel="canonical" href="{{ canonical_url }}">
<meta property="og:site_name" content="{{ site.title | escape }}">
<meta property="og:title" content="{{ seo_title | escape }}">
<meta property="og:description" content="{{ seo_description | strip_newlines | escape }}">
<meta property="og:type" content="article">
<meta property="og:url" content="{{ canonical_url }}">
<meta property="og:image" content="{{ seo_image }}">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="{{ seo_title | escape }}">
<meta name="twitter:description" content="{{ seo_description | strip_newlines | escape }}">
<meta name="twitter:image" content="{{ seo_image }}">
<meta name="theme-color" content="#111827">
<link rel="stylesheet" href="{{ '/site.css' | relative_url }}">
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "TechArticle",
"name": {{ seo_title | jsonify }},
"headline": {{ seo_title | jsonify }},
"description": {{ seo_description | jsonify }},
"url": {{ canonical_url | jsonify }},
"isPartOf": {
"@type": "WebSite",
"name": {{ site.title | jsonify }},
"url": {{ "/" | absolute_url | jsonify }}
},
"about": {
"@type": "SoftwareSourceCode",
"name": {{ site.title | jsonify }},
"codeRepository": {{ repository_url | jsonify }},
"programmingLanguage": "Python",
"runtimePlatform": "Python 3.11+",
"applicationCategory": "DeveloperApplication"
}
}
</script>
</head>
<body class="doc-page">
<header class="site-header">
<a class="brand" href="{{ '/' | relative_url }}" aria-label="AgenticLocal home">
<span class="brand-mark" aria-hidden="true">AL</span>
<span>AgenticLocal</span>
</a>
<nav class="nav" aria-label="Project navigation">
<a href="{{ '/#demo' | relative_url }}">Demo</a>
<a href="{{ '/#runtime' | relative_url }}">Runtime</a>
<a href="{{ '/use-cases.html' | relative_url }}">Use Cases</a>
<a href="https://github.com/Bowen-AI/AgenticLocal" rel="noopener" target="_blank">GitHub</a>
<a href="{{ '/install.html' | relative_url }}">Install</a>
<a href="{{ '/github-pages.html' | relative_url }}">Deploy</a>
</nav>
</header>
<main class="doc-shell">
{{ content }}
</main>
<footer class="site-footer">
<span>AgenticLocal 0.1.0</span>
<span>Local-first. Tool-aware. Policy-checked.</span>
</footer>
</body>
</html>