Skip to content

Commit d88f5c5

Browse files
committed
[update] seo
1 parent 722044d commit d88f5c5

5 files changed

Lines changed: 49 additions & 3 deletions

File tree

docs/_config.yml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,20 @@ title: TEDI Docs
2222
email: tedi-help@outlook.com
2323
description: >- # this means to ignore newlines until "baseurl:"
2424
TEDI is the future of enterprise systems integration software. Use TEDI to simplify the integration of all your systems, processes, and data.
25+
2526
baseurl: ""
2627
url: "https://tedi-software.github.io"
2728
repository: tedi-software/tedi
28-
# twitter_username:
29-
github_username: tedi-software
29+
30+
# Shared metadata
31+
site:
32+
name: TEDI
33+
image: /assets/images/tedi_icon_scaled.png
34+
locale: en_US
35+
type: website
36+
author: TEDI
37+
publisher: TEDI
38+
3039

3140
# Build settings
3241
# theme: minima

docs/_includes/head_custom.html

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,22 @@
55
<script> (function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i+"?ref=bwt"; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "nwr3njtqvk");</script>
66

77

8+
<!-- Structured Data -->
9+
<script type="application/ld+json">
10+
{
11+
"@context": "https://schema.org",
12+
"@type": "SoftwareApplication",
13+
"name": "{{ page.title | default: site.title }}",
14+
"description": "{{ page.description | default: site.description }}",
15+
"url": "{{ page.url | absolute_url }}",
16+
"applicationCategory": "BusinessApplication",
17+
"operatingSystem": "Cross-platform"
18+
}
19+
</script>
20+
21+
22+
23+
824
{%- comment -%}
925
================================================================================
1026
tedi-software 20241015
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<footer class="site-footer">
2-
Copyright © 2024 TEDI, LLC
2+
Copyright © 2025 TEDI, LLC
33
</footer>
44

docs/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: {{ site.url }}/sitemap.xml

docs/pages/sitemap.xml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
3+
<url>
4+
<loc>{{ site.url }}/</loc>
5+
<changefreq>weekly</changefreq>
6+
<priority>1.0</priority>
7+
</url>
8+
{% for page in site.pages %}
9+
{% unless page.sitemap == false or page.url contains '404' %}
10+
<url>
11+
<loc>{{ site.url }}{{ page.url | xml_escape }}</loc>
12+
<changefreq>monthly</changefreq>
13+
<priority>0.5</priority>
14+
</url>
15+
{% endunless %}
16+
{% endfor %}
17+
</urlset>

0 commit comments

Comments
 (0)