aboutsummaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorChristine Dodrill <me@christine.website>2021-08-07 12:22:05 -0400
committerChristine Dodrill <me@christine.website>2021-08-07 12:22:05 -0400
commit1d48db940b134fb6bedc53f327f19618d6643368 (patch)
tree10171b4acbd861b2f2339c52f77728d33660c419 /templates
parent6b8b70321c7309313385ab8581abf97724e24312 (diff)
downloadxesite-1d48db940b134fb6bedc53f327f19618d6643368.tar.xz
xesite-1d48db940b134fb6bedc53f327f19618d6643368.zip
Xe
Signed-off-by: Christine Dodrill <me@christine.website>
Diffstat (limited to 'templates')
-rw-r--r--templates/blog_atom.rs.xml2
-rw-r--r--templates/blog_rss.rs.xml2
-rw-r--r--templates/blogpost.rs.html12
-rw-r--r--templates/footer.rs.html4
-rw-r--r--templates/gallerypost.rs.html12
-rw-r--r--templates/header.rs.html10
-rw-r--r--templates/index.rs.html12
-rw-r--r--templates/talkpost.rs.html10
8 files changed, 35 insertions, 29 deletions
diff --git a/templates/blog_atom.rs.xml b/templates/blog_atom.rs.xml
index 0296da6..8706c23 100644
--- a/templates/blog_atom.rs.xml
+++ b/templates/blog_atom.rs.xml
@@ -6,7 +6,7 @@
<?xml version='1.0' encoding='UTF-8'?>
<feed xmlns="http://www.w3.org/2005/Atom">
<id>https://christine.website/blog.atom</id>
- <title>Christine Dodrill's Blog</title>
+ <title>Xe's Blog</title>
<updated>@Utc::now().to_rfc3339()</updated>
<author>
<name>Christine Dodrill</name>
diff --git a/templates/blog_rss.rs.xml b/templates/blog_rss.rs.xml
index 0e87ad1..0b42b8e 100644
--- a/templates/blog_rss.rs.xml
+++ b/templates/blog_rss.rs.xml
@@ -5,7 +5,7 @@
<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
- <title>Christine Dodrill's Blog</title>
+ <title>Xe's Blog</title>
<link>https://christine.website/blog</link>
<description>Tech, philosophy and more</description>
<generator>@APP https://github.com/Xe/site</generator>
diff --git a/templates/blogpost.rs.html b/templates/blogpost.rs.html
index 77d181f..a4d01be 100644
--- a/templates/blogpost.rs.html
+++ b/templates/blogpost.rs.html
@@ -14,11 +14,11 @@
<!-- Facebook -->
<meta property="og:type" content="website" />
<meta property="og:title" content="@post.front_matter.title" />
-<meta property="og:site_name" content="Christine Dodrill's Blog" />
+<meta property="og:site_name" content="Xe's Blog" />
<!-- Description -->
-<meta name="description" content="@post.front_matter.title - Christine Dodrill's Blog" />
-<meta name="author" content="Christine Dodrill">
+<meta name="description" content="@post.front_matter.title - Xe's Blog" />
+<meta name="author" content="Xe">
@if post.front_matter.redirect_to.is_none() {
<link rel="canonical" href="https://christine.website/@post.link">
@@ -38,11 +38,13 @@
@},
"author": @{
"@@type": "Person",
- "name": "Christine Dodrill"
+ "name": "Xe",
+ "alternateName": "Christine Dodrill"
@},
"publisher": @{
"@@type": "Person",
- "name": "Christine Dodrill"
+ "name": "Xe",
+ "alternateName": "Christine Dodrill"
@}
@}
</script>
diff --git a/templates/footer.rs.html b/templates/footer.rs.html
index 475ff18..e42fe2e 100644
--- a/templates/footer.rs.html
+++ b/templates/footer.rs.html
@@ -2,8 +2,8 @@
</div>
<hr />
<footer>
- <blockquote>Copyright 2021 Christine Dodrill. Any and all opinions listed here are my own and not representative of my employers; future, past and present.</blockquote>
- <!--<p>Like what you see? Donate on <a href="https://www.patreon.com/cadey">Patreon</a> like <a href="/patrons">these awesome people</a>!</p>-->
+ <blockquote>Copyright 2021 Xe (Christine Dodrill). Any and all opinions listed here are my own and not representative of my employers; future, past and present.</blockquote>
+ <p>Like what you see? Donate on <a href="https://www.patreon.com/cadey">Patreon</a> like <a href="/patrons">these awesome people</a>!</p>
<p>Looking for someone for your team? Take a look <a href="/signalboost">here</a>.</p>
<p>Served by @env!("out")/bin/xesite</a>, see <a href="https://github.com/Xe/site">source code here</a>.</p>
</footer>
diff --git a/templates/gallerypost.rs.html b/templates/gallerypost.rs.html
index b85c716..9feae1a 100644
--- a/templates/gallerypost.rs.html
+++ b/templates/gallerypost.rs.html
@@ -14,11 +14,11 @@
<!-- Facebook -->
<meta property="og:type" content="website" />
<meta property="og:title" content="@post.front_matter.title" />
-<meta property="og:site_name" content="Christine Dodrill's Blog" />
+<meta property="og:site_name" content="Xe's Blog" />
<!-- Description -->
-<meta name="description" content="@post.front_matter.title - Christine Dodrill's Blog" />
-<meta name="author" content="Christine Dodrill">
+<meta name="description" content="@post.front_matter.title - Xe's Blog" />
+<meta name="author" content="Xe">
<link rel="canonical" href="https://christine.website/@post.link">
@@ -36,11 +36,13 @@
@},
"author": @{
"@@type": "Person",
- "name": "Christine Dodrill"
+ "name": "Xe",
+ "alternateName": "Christine Dodrill"
@},
"publisher": @{
"@@type": "Person",
- "name": "Christine Dodrill"
+ "name": "Xe",
+ "alternateName": "Christine Dodrill"
@}
@}
</script>
diff --git a/templates/header.rs.html b/templates/header.rs.html
index 9d8b40a..bc501b9 100644
--- a/templates/header.rs.html
+++ b/templates/header.rs.html
@@ -51,9 +51,9 @@ la budza pu cusku lu
<html lang="en">
<head>
@if title.is_some() {
- <title>@title.unwrap() - Christine Dodrill</title>
+ <title>@title.unwrap() - Xe</title>
} else {
- <title>Christine Dodrill</title>
+ <title>Xe</title>
}
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/css/hack.css" />
@@ -63,8 +63,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" /> }
<link rel="manifest" href="/static/manifest.json" />
- <link rel="alternate" title="Christine Dodrill's Blog" type="application/rss+xml" href="https://christine.website/blog.rss" />
- <link rel="alternate" title="Christine Dodrill's Blog" type="application/json" href="https://christine.website/blog.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/json" href="https://christine.website/blog.json" />
<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">
@@ -93,7 +93,7 @@ la budza pu cusku lu
<body class="snow hack gruvbox-dark">
<div class="container">
<header>
- <p><a href="/">Christine Dodrill</a> - <a href="/blog">Blog</a> - <a href="/contact">Contact</a> - <a href="/gallery">Gallery</a> - <a href="/resume">Resume</a> - <a href="/talks">Talks</a> - <a href="/signalboost">Signal Boost</a> - <a href="/feeds">Feeds</a> | <a target="_blank" rel="noopener noreferrer" href="https://graphviz.christine.website">GraphViz</a> - <a target="_blank" rel="noopener noreferrer" href="https://when-then-zen.christine.website/">When Then Zen</a></p>
+ <p><a href="/">Xe</a> - <a href="/blog">Blog</a> - <a href="/contact">Contact</a> - <a href="/gallery">Gallery</a> - <a href="/resume">Resume</a> - <a href="/talks">Talks</a> - <a href="/signalboost">Signal Boost</a> - <a href="/feeds">Feeds</a> | <a target="_blank" rel="noopener noreferrer" href="https://graphviz.christine.website">GraphViz</a> - <a target="_blank" rel="noopener noreferrer" href="https://when-then-zen.christine.website/">When Then Zen</a></p>
</header>
<div class="snowframe">
diff --git a/templates/index.rs.html b/templates/index.rs.html
index 1919ec1..bbc8694 100644
--- a/templates/index.rs.html
+++ b/templates/index.rs.html
@@ -11,8 +11,8 @@
@{
"@@context": "http://schema.org/",
"@@type": "Person",
- "name": "Christine Dodrill",
- "alternateName": "Cadey, Xe, Xena",
+ "name": "Xe",
+ "alternateName": "Cadey, Christine Dodrill, Xena",
"url": "https://christine.website",
"image": "https://christine.website/static/img/avatar_large.png",
"sameAs": [
@@ -29,17 +29,17 @@
<!-- Twitter -->
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@@theprincessxena" />
-<meta name="twitter:title" content="Christine Dodrill" />
+<meta name="twitter:title" content="Xe" />
<meta name="twitter:description" content="Full-stack Engineer" />
<!-- Facebook -->
<meta property="og:type" content="website" />
-<meta property="og:title" content="Christine Dodrill" />
+<meta property="og:title" content="Xe" />
<meta property="og:site_name" content="Full-stack Engineer" />
<!-- Description -->
<meta name="description" content="Full-stack Engineer" />
-<meta name="author" content="Christine Dodrill">
+<meta name="author" content="Xe, Christine Dodrill">
<div class="grid">
<div class="cell -3of12 content">
@@ -48,7 +48,7 @@
<a href="/contact" class="justify-content-center">Contact Me</a>
</div>
<div class="cell -9of12 content">
- <h1>Christine Dodrill</h1>
+ <h1>Xe</h1>
<h4>Full-stack Engineer</h4>
<h5>Skills</h5>
<ul>
diff --git a/templates/talkpost.rs.html b/templates/talkpost.rs.html
index 6198a7b..d2cf5bd 100644
--- a/templates/talkpost.rs.html
+++ b/templates/talkpost.rs.html
@@ -14,11 +14,11 @@
<!-- Facebook -->
<meta property="og:type" content="website" />
<meta property="og:title" content="@post.front_matter.title" />
-<meta property="og:site_name" content="Christine Dodrill's Blog" />
+<meta property="og:site_name" content="Xe's Blog" />
<!-- Description -->
<meta name="description" content="@post.front_matter.title - Christine Dodrill's Blog" />
-<meta name="author" content="Christine Dodrill">
+<meta name="author" content="Xe">
<link rel="canonical" href="https://christine.website/@post.link">
@@ -36,11 +36,13 @@
@},
"author": @{
"@@type": "Person",
- "name": "Christine Dodrill"
+ "name": "Xe",
+ "alternateName": "Christine Dodrill"
@},
"publisher": @{
"@@type": "Person",
- "name": "Christine Dodrill"
+ "name": "Xe",
+ "alternateName": "Christine Dodrill"
@}
@}
</script>