|
3 | 3 | <head> |
4 | 4 | <meta charset="UTF-8"> |
5 | 5 | <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| 6 | + |
| 7 | + <!-- Primary Meta Tags --> |
6 | 8 | <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 --> |
8 | 46 | <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> |
9 | 63 | </head> |
10 | 64 | <body> |
11 | 65 | <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> |
19 | 71 | </div> |
20 | 72 | </nav> |
21 | 73 |
|
|
27 | 79 |
|
28 | 80 | <footer class="footer"> |
29 | 81 | <div class="footer-container"> |
30 | | - <p>{{ site.title }} © {{ '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 }} © {{ '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> |
32 | 84 | </div> |
33 | 85 | </footer> |
34 | 86 | </body> |
|
0 commit comments