templates: change canonical domain to xeiaso.net

Signed-off-by: Xe Iaso <me@christine.website>
This commit is contained in:
Cadey Ratio 2022-05-26 13:28:35 -04:00
parent b1277d209d
commit 06b00eb7c3
8 changed files with 37 additions and 42 deletions

View File

@ -5,22 +5,22 @@
<?xml version='1.0' encoding='UTF-8'?> <?xml version='1.0' encoding='UTF-8'?>
<feed xmlns="http://www.w3.org/2005/Atom"> <feed xmlns="http://www.w3.org/2005/Atom">
<id>https://christine.website/blog.atom</id> <id>https://xeiaso.net/blog.atom</id>
<title>Xe's Blog</title> <title>Xe's Blog</title>
<updated>@Utc::now().to_rfc3339()</updated> <updated>@Utc::now().to_rfc3339()</updated>
<author> <author>
<name>Xe Iaso</name> <name>Xe Iaso</name>
<email>me@@christine.website</email> <email>me@@christine.website</email>
</author> </author>
<link href="https://christine.website/blog.atom" rel="self"/> <link href="https://xeiaso.net/blog.atom" rel="self"/>
<link href="https://christine.website/blog" rel="alternate"/> <link href="https://xeiaso.net/blog" rel="alternate"/>
<generator uri="@env!("CARGO_PKG_REPOSITORY")" version="@env!("CARGO_PKG_VERSION")">@env!("CARGO_PKG_NAME")</generator> <generator uri="@env!("CARGO_PKG_REPOSITORY")" version="@env!("CARGO_PKG_VERSION")">@env!("CARGO_PKG_NAME")</generator>
@for post in posts { @for post in posts {
<entry> <entry>
<id>https://christine.website/@post.link</id> <id>https://xeiaso.net/@post.link</id>
<title>@post.front_matter.title</title> <title>@post.front_matter.title</title>
<published>@post.date.to_rfc3339()</published> <published>@post.date.to_rfc3339()</published>
<link href="https://christine.website/@post.link" rel="alternate"/> <link href="https://xeiaso.net/@post.link" rel="alternate"/>
</entry> </entry>
} }
</feed> </feed>

View File

@ -6,15 +6,15 @@
<rss version="2.0"> <rss version="2.0">
<channel> <channel>
<title>Xe's Blog</title> <title>Xe's Blog</title>
<link>https://christine.website/blog</link> <link>https://xeiaso.net/blog</link>
<description>Tech, philosophy and more</description> <description>Tech, philosophy and more</description>
<generator>@APP https://github.com/Xe/site</generator> <generator>@APP https://github.com/Xe/site</generator>
<ttl>1440</ttl> <ttl>1440</ttl>
@for post in posts { @for post in posts {
<item> <item>
<guid>https://christine.website/@post.link</guid> <guid>https://xeiaso.net/@post.link</guid>
<title>@post.front_matter.title</title> <title>@post.front_matter.title</title>
<link>https://christine.website/@post.link</link> <link>https://xeiaso.net/@post.link</link>
<description><![CDATA[@Html(post.body_html)]]></description> <description><![CDATA[@Html(post.body_html)]]></description>
<pubDate>@post.date.to_rfc2822()</pubDate> <pubDate>@post.date.to_rfc2822()</pubDate>
</item> </item>

View File

@ -75,7 +75,7 @@
</blockquote> </blockquote>
</p> </p>
<h3><a href="https://christine.website/blog/templeos-2-god-the-rng-2019-05-30">TempleOS: 2 - <code>god</code>, the Random Number Generator</a> </h3> <h3><a href="https://xeiaso.net/blog/templeos-2-god-the-rng-2019-05-30">TempleOS: 2 - <code>god</code>, the Random Number Generator</a> </h3>
<p> <p>
<blockquote> <blockquote>

View File

@ -19,10 +19,12 @@
<!-- Description --> <!-- Description -->
<meta name="description" content="@post.front_matter.title - Xe's Blog" /> <meta name="description" content="@post.front_matter.title - Xe's Blog" />
<meta name="author" content="Xe Iaso"> <meta name="author" content="Xe Iaso" />
@if post.front_matter.redirect_to.is_none() { @if post.front_matter.redirect_to.is_none() {
<link rel="canonical" href="https://christine.website/@post.link"> <link rel="canonical" href="https://xeiaso.net/@post.link" />
} else {
<link rel="canonical" href="@post.front_matter.redirect_to.as_ref().unwrap()" />
} }
<script type="module" src="/static/js/conversation.js"></script> <script type="module" src="/static/js/conversation.js"></script>
@ -32,22 +34,20 @@
"@@context": "http://schema.org", "@@context": "http://schema.org",
"@@type": "Article", "@@type": "Article",
"headline": "@post.front_matter.title", "headline": "@post.front_matter.title",
"image": "https://christine.website/static/img/avatar.png", "image": "https://xeiaso.net/static/img/avatar.png",
"url": "https://christine.website/@post.link", "url": "https://xeiaso.net/@post.link",
"datePublished": "@post.date.format("%Y-%m-%d")", "datePublished": "@post.date.format("%Y-%m-%d")",
"mainEntityOfPage": @{ "mainEntityOfPage": @{
"@@type": "WebPage", "@@type": "WebPage",
"@@id": "https://christine.website/@post.link" "@@id": "https://xeiaso.net/@post.link"
@}, @},
"author": @{ "author": @{
"@@type": "Person", "@@type": "Person",
"name": "Xe Iaso", "name": "Xe Iaso"
"alternateName": "Christine Dodrill"
@}, @},
"publisher": @{ "publisher": @{
"@@type": "Person", "@@type": "Person",
"name": "Xe Iaso", "name": "Xe Iaso"
"alternateName": "Christine Dodrill"
@} @}
@} @}
</script> </script>

View File

@ -20,29 +20,27 @@
<meta name="description" content="@post.front_matter.title - Xe's Blog" /> <meta name="description" content="@post.front_matter.title - Xe's Blog" />
<meta name="author" content="Xe Iaso"> <meta name="author" content="Xe Iaso">
<link rel="canonical" href="https://christine.website/@post.link"> <link rel="canonical" href="https://xeiaso.net/@post.link" />
<script type="application/ld+json"> <script type="application/ld+json">
@{ @{
"@@context": "http://schema.org", "@@context": "http://schema.org",
"@@type": "Article", "@@type": "Article",
"headline": "@post.front_matter.title", "headline": "@post.front_matter.title",
"image": "https://christine.website/static/img/avatar.png", "image": "https://xeiaso.net/static/img/avatar.png",
"url": "https://christine.website/@post.link", "url": "https://xeiaso.net/@post.link",
"datePublished": "@post.date.format("%Y-%m-%d")", "datePublished": "@post.date.format("%Y-%m-%d")",
"mainEntityOfPage": @{ "mainEntityOfPage": @{
"@@type": "WebPage", "@@type": "WebPage",
"@@id": "https://christine.website/@post.link" "@@id": "https://xeiaso.net/@post.link"
@}, @},
"author": @{ "author": @{
"@@type": "Person", "@@type": "Person",
"name": "Xe Iaso", "name": "Xe Iaso",
"alternateName": "Christine Dodrill"
@}, @},
"publisher": @{ "publisher": @{
"@@type": "Person", "@@type": "Person",
"name": "Xe Iaso", "name": "Xe Iaso",
"alternateName": "Christine Dodrill"
@} @}
@} @}
</script> </script>

View File

@ -62,8 +62,8 @@ la budza pu cusku lu
@if Utc::now().month() == 12 || Utc::now().month() == 1 || Utc::now().month() == 2 { <link rel="stylesheet" href="/css/snow.css?snowfix=20211201" /> } @if Utc::now().month() == 12 || Utc::now().month() == 1 || Utc::now().month() == 2 { <link rel="stylesheet" href="/css/snow.css?snowfix=20211201" /> }
<link rel="manifest" href="/static/manifest.json" /> <link rel="manifest" href="/static/manifest.json" />
<link rel="alternate" title="Xe's Blog" type="application/rss+xml" href="https://christine.website/blog.rss" /> <link rel="alternate" title="Xe's Blog" type="application/rss+xml" href="https://xeiaso.net/blog.rss" />
<link rel="alternate" title="Xe's Blog" type="application/json" href="https://christine.website/blog.json" /> <link rel="alternate" title="Xe's Blog" type="application/json" href="https://xeiaso.net/blog.json" />
<link rel="apple-touch-icon" sizes="57x57" href="/static/favicon/apple-icon-57x57.png"> <link rel="apple-touch-icon" sizes="57x57" href="/static/favicon/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="/static/favicon/apple-icon-60x60.png"> <link rel="apple-touch-icon" sizes="60x60" href="/static/favicon/apple-icon-60x60.png">

View File

@ -5,16 +5,15 @@
@:header_html(None, None) @:header_html(None, None)
<link rel="authorization_endpoint" href="https://idp.christine.website/auth"> <link rel="authorization_endpoint" href="https://idp.christine.website/auth">
<link rel="canonical" href="https://christine.website/"> <link rel="canonical" href="https://xeiaso.net/">
<meta name="google-site-verification" content="rzs9eBEquMYr9Phrg0Xm0mIwFjDBcbdgJ3jF6Disy-k" /> <meta name="google-site-verification" content="rzs9eBEquMYr9Phrg0Xm0mIwFjDBcbdgJ3jF6Disy-k" />
<script type="application/ld+json"> <script type="application/ld+json">
@{ @{
"@@context": "http://schema.org/", "@@context": "http://schema.org/",
"@@type": "Person", "@@type": "Person",
"name": "Xe Iaso", "name": "Xe Iaso",
"alternateName": "Cadey, Christine Dodrill, Xena", "url": "https://xeiaso.net",
"url": "https://christine.website", "image": "https://xeiaso.net/static/img/avatar_large.png",
"image": "https://christine.website/static/img/avatar_large.png",
"sameAs": [ "sameAs": [
"https://github.com/Xe", "https://github.com/Xe",
"https://tulpa.dev/cadey", "https://tulpa.dev/cadey",
@ -39,7 +38,7 @@
<!-- Description --> <!-- Description -->
<meta name="description" content="Full-stack Engineer" /> <meta name="description" content="Full-stack Engineer" />
<meta name="author" content="Xe Iaso, Christine Dodrill"> <meta name="author" content="Xe Iaso">
<div class="grid"> <div class="grid">
<div class="cell -3of12 content"> <div class="cell -3of12 content">
@ -48,8 +47,8 @@
<a href="/contact" class="justify-content-center">Contact Me</a> <a href="/contact" class="justify-content-center">Contact Me</a>
</div> </div>
<div class="cell -9of12 content"> <div class="cell -9of12 content">
<h1>Xe</h1> <h1>Xe Iaso</h1>
<h4>Full-stack Engineer</h4> <h4>Archmage of Infrastructure</h4>
<h5>Skills</h5> <h5>Skills</h5>
<ul> <ul>
<li>Go, Lua, Haskell, C, Rust and other languages</li> <li>Go, Lua, Haskell, C, Rust and other languages</li>

View File

@ -19,31 +19,29 @@
<!-- Description --> <!-- Description -->
<meta name="description" content="@post.front_matter.title - Xe's Blog" /> <meta name="description" content="@post.front_matter.title - Xe's Blog" />
<meta name="author" content="Xe Iaso"> <meta name="author" content="Xe Iaso" />
<link rel="canonical" href="https://christine.website/@post.link"> <link rel="canonical" href="https://xeiaso.net/@post.link" />
<script type="application/ld+json"> <script type="application/ld+json">
@{ @{
"@@context": "http://schema.org", "@@context": "http://schema.org",
"@@type": "Article", "@@type": "Article",
"headline": "@post.front_matter.title", "headline": "@post.front_matter.title",
"image": "https://christine.website/static/img/avatar.png", "image": "https://xeiaso.net/static/img/avatar.png",
"url": "https://christine.website/@post.link", "url": "https://xeiaso.net/@post.link",
"datePublished": "@post.date.format("%Y-%m-%d")", "datePublished": "@post.date.format("%Y-%m-%d")",
"mainEntityOfPage": @{ "mainEntityOfPage": @{
"@@type": "WebPage", "@@type": "WebPage",
"@@id": "https://christine.website/@post.link" "@@id": "https://xeiaso.net/@post.link"
@}, @},
"author": @{ "author": @{
"@@type": "Person", "@@type": "Person",
"name": "Xe Iaso", "name": "Xe Iaso"
"alternateName": "Christine Dodrill"
@}, @},
"publisher": @{ "publisher": @{
"@@type": "Person", "@@type": "Person",
"name": "Xe Iaso", "name": "Xe Iaso"
"alternateName": "Christine Dodrill"
@} @}
@} @}
</script> </script>