Skip to content

Commit d0fcc16

Browse files
committed
style
1 parent 4cd3675 commit d0fcc16

5 files changed

Lines changed: 121 additions & 10 deletions

File tree

github-pages/_layouts/default.html

Lines changed: 62 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,71 @@
33
<head>
44
<meta charset="UTF-8">
55
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
7+
<!-- Primary Meta Tags -->
68
<title>{{ page.title }} | {{ site.title }}</title>
7-
<meta name="description" content="{{ site.description }}">
9+
<meta name="title" content="{{ page.title }} | {{ site.title }}">
10+
<meta name="description" content="{{ page.description | default: site.description }}">
11+
<meta name="keywords" content="MCAF, AI, coding agents, framework, software development, AI-assisted development, AGENTS.md, ManagedCode">
12+
<meta name="author" content="ManagedCode">
13+
<meta name="robots" content="index, follow">
14+
15+
<!-- Canonical URL -->
16+
<link rel="canonical" href="{{ site.url }}{{ page.url }}">
17+
18+
<!-- Open Graph / Facebook -->
19+
<meta property="og:type" content="website">
20+
<meta property="og:url" content="{{ site.url }}{{ page.url }}">
21+
<meta property="og:title" content="{{ page.title }} | {{ site.title }}">
22+
<meta property="og:description" content="{{ page.description | default: site.description }}">
23+
<meta property="og:image" content="{{ site.url }}/assets/images/og-image.svg">
24+
<meta property="og:image:width" content="1200">
25+
<meta property="og:image:height" content="630">
26+
<meta property="og:site_name" content="{{ site.title }}">
27+
<meta property="og:locale" content="en_US">
28+
29+
<!-- Twitter -->
30+
<meta name="twitter:card" content="summary_large_image">
31+
<meta name="twitter:url" content="{{ site.url }}{{ page.url }}">
32+
<meta name="twitter:title" content="{{ page.title }} | {{ site.title }}">
33+
<meta name="twitter:description" content="{{ page.description | default: site.description }}">
34+
<meta name="twitter:image" content="{{ site.url }}/assets/images/og-image.svg">
35+
36+
<!-- Favicons -->
37+
<link rel="icon" type="image/svg+xml" href="{{ '/assets/images/favicon.svg' | relative_url }}">
38+
<link rel="icon" type="image/png" sizes="32x32" href="{{ '/assets/images/favicon-32.png' | relative_url }}">
39+
<link rel="apple-touch-icon" href="{{ '/assets/images/apple-touch-icon.png' | relative_url }}">
40+
41+
<!-- Theme Color -->
42+
<meta name="theme-color" content="#785D8F">
43+
<meta name="msapplication-TileColor" content="#785D8F">
44+
45+
<!-- Stylesheet -->
846
<link rel="stylesheet" href="{{ '/assets/css/style.css' | relative_url }}">
47+
48+
<!-- Structured Data -->
49+
<script type="application/ld+json">
50+
{
51+
"@context": "https://schema.org",
52+
"@type": "WebSite",
53+
"name": "{{ site.title }}",
54+
"description": "{{ site.description }}",
55+
"url": "{{ site.url }}",
56+
"publisher": {
57+
"@type": "Organization",
58+
"name": "ManagedCode",
59+
"url": "https://managed-code.com"
60+
}
61+
}
62+
</script>
963
</head>
1064
<body>
1165
<nav class="nav">
12-
<div class="nav-container">
13-
<a href="{{ '/' | relative_url }}" class="nav-logo">{{ site.title }}</a>
14-
<div class="nav-links">
15-
<a href="{{ '/' | relative_url }}" {% if page.url == '/' %}class="active"{% endif %}>Guide</a>
16-
<a href="{{ '/templates' | relative_url }}" {% if page.url == '/templates.html' %}class="active"{% endif %}>Templates</a>
17-
<a href="https://github.com/managedcode/MCAF" target="_blank">GitHub</a>
18-
</div>
66+
<a href="{{ '/' | relative_url }}" class="nav-logo">{{ site.title }}</a>
67+
<div class="nav-links">
68+
<a href="{{ '/' | relative_url }}" {% if page.url == '/' %}class="active"{% endif %}>Guide</a>
69+
<a href="{{ '/templates' | relative_url }}" {% if page.url == '/templates.html' %}class="active"{% endif %}>Templates</a>
70+
<a href="https://github.com/managedcode/MCAF" target="_blank" rel="noopener">GitHub</a>
1971
</div>
2072
</nav>
2173

@@ -27,8 +79,8 @@
2779

2880
<footer class="footer">
2981
<div class="footer-container">
30-
<p>{{ site.title }} &copy; {{ 'now' | date: '%Y' }} <a href="https://github.com/managedcode">ManagedCode</a></p>
31-
<p>Licensed under <a href="https://creativecommons.org/licenses/by/4.0/">CC BY 4.0</a></p>
82+
<p>{{ site.title }} &copy; {{ 'now' | date: '%Y' }} <a href="https://managed-code.com">ManagedCode</a></p>
83+
<p>Licensed under <a href="https://creativecommons.org/licenses/by/4.0/" rel="noopener">CC BY 4.0</a></p>
3284
</div>
3385
</footer>
3486
</body>
Lines changed: 10 additions & 0 deletions
Loading
Lines changed: 30 additions & 0 deletions
Loading

github-pages/robots.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
User-agent: *
2+
Allow: /
3+
4+
Sitemap: https://mcaf.managed-code.com/sitemap.xml

github-pages/sitemap.xml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
layout: null
3+
---
4+
<?xml version="1.0" encoding="UTF-8"?>
5+
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
6+
{% for page in site.pages %}
7+
{% if page.url contains '.html' or page.url == '/' %}
8+
<url>
9+
<loc>{{ site.url }}{{ page.url | remove: 'index.html' }}</loc>
10+
<lastmod>{{ site.time | date: '%Y-%m-%d' }}</lastmod>
11+
<priority>{% if page.url == '/' %}1.0{% else %}0.8{% endif %}</priority>
12+
</url>
13+
{% endif %}
14+
{% endfor %}
15+
</urlset>

0 commit comments

Comments
 (0)