Skip to content

Commit

Permalink
attempts to resolve site.xml and meta data discrepancies that may be …
Browse files Browse the repository at this point in the history
…causing invalid redirects for googlebot indexer/crawler
  • Loading branch information
jmwii1981 committed Dec 12, 2024
1 parent 156dcf2 commit 38f45a5
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 23 deletions.
Binary file modified .DS_Store
Binary file not shown.
38 changes: 19 additions & 19 deletions _layouts/page.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<title>Jan Michael Wallace II
{% if page.url == '/' %}{% endif %}
{% if page.url == '/experience/' %} – Experience{% endif %}
{% if page.url == '/endorsements/' %} – endorsements{% endif %}
{% if page.url == '/endorsements/' %} – Endorsements{% endif %}
{% if page.url == '/perspectives/' %} – Perspectives{% endif %}
{% if page.url == '/about/' %} – About{% endif %}
</title>
Expand Down Expand Up @@ -108,8 +108,8 @@
},
{
"@type": "WebPage",
"@id": "http://janmichael.io/experience",
"url": "http://janmichael.io/experience",
"@id": "http://janmichael.io/experience/",
"url": "http://janmichael.io/experience/",
"name": "Experience",
"breadcrumb": {
"@type": "BreadcrumbList",
Expand All @@ -124,15 +124,15 @@
"@type": "ListItem",
"position": 2,
"name": "Experience",
"item": "http://janmichael.io/experience"
"item": "http://janmichael.io/experience/"
}
]
}
},
{
"@type": "WebPage",
"@id": "http://janmichael.io/endorsements",
"url": "http://janmichael.io/endorsements",
"@id": "http://janmichael.io/endorsements/",
"url": "http://janmichael.io/endorsements/",
"name": "Endorsements",
"breadcrumb": {
"@type": "BreadcrumbList",
Expand All @@ -147,15 +147,15 @@
"@type": "ListItem",
"position": 2,
"name": "Endorsements",
"item": "http://janmichael.io/endorsements"
"item": "http://janmichael.io/endorsements/"
}
]
}
},
{
"@type": "WebPage",
"@id": "http://janmichael.io/perspectives",
"url": "http://janmichael.io/perspectives",
"@id": "http://janmichael.io/perspectives/",
"url": "http://janmichael.io/perspectives/",
"name": "Perspectives",
"breadcrumb": {
"@type": "BreadcrumbList",
Expand All @@ -170,15 +170,15 @@
"@type": "ListItem",
"position": 2,
"name": "Perspectives",
"item": "http://janmichael.io/perspectives"
"item": "http://janmichael.io/perspectives/"
}
]
}
},
{
"@type": "WebPage",
"@id": "http://janmichael.io/about",
"url": "http://janmichael.io/about",
"@id": "http://janmichael.io/about/",
"url": "http://janmichael.io/about/",
"name": "About",
"breadcrumb": {
"@type": "BreadcrumbList",
Expand All @@ -193,7 +193,7 @@
"@type": "ListItem",
"position": 2,
"name": "About",
"item": "http://janmichael.io/about"
"item": "http://janmichael.io/about/"
}
]
}
Expand All @@ -208,13 +208,13 @@
"@context": "https://schema.org",
"@type": "Person",
"name": "Jan Michael Wallace II",
"url": "http://janmichael.io",
"url": "http://janmichael.io/",
"sameAs": [
"https://linkedin.com/in/jmwii1981",
"https://medium.com/@jmwii1981",
"https://codepen.io/jmwii1981",
"https://github.com/jmwii1981",
"https://figma.com/@jmwii1981"
"https://linkedin.com/in/jmwii1981/",
"https://medium.com/@jmwii1981/",
"https://codepen.io/jmwii1981/",
"https://github.com/jmwii1981/",
"https://figma.com/@jmwii1981/"
],
"jobTitle": "Manager of Product Design",
"worksFor": {
Expand Down
8 changes: 4 additions & 4 deletions sitemap.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,28 +10,28 @@

<!-- Experience page -->
<url>
<loc>http://janmichael.io/experience</loc>
<loc>http://janmichael.io/experience/</loc>
<changefreq>weekly</changefreq>
<priority>0.8</priority>
</url>

<!-- endorsements page -->
<url>
<loc>http://janmichael.io/endorsements</loc>
<loc>http://janmichael.io/endorsements/</loc>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>

<!-- Blog (Perspectives) page -->
<url>
<loc>http://janmichael.io/perspectives</loc>
<loc>http://janmichael.io/perspectives/</loc>
<changefreq>weekly</changefreq>
<priority>0.9</priority>
</url>

<!-- About page -->
<url>
<loc>http://janmichael.io/about</loc>
<loc>http://janmichael.io/about/</loc>
<changefreq>monthly</changefreq>
<priority>0.6</priority>
</url>
Expand Down

0 comments on commit 38f45a5

Please sign in to comment.