-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
7 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,10 @@ export const siteAuthor = { | |
name: "Helen Chong", | ||
email: "[email protected]", | ||
url: siteUrl + "/about", | ||
fediverse: { | ||
handle: "@[email protected]", | ||
url: "https://social.lol/@helenchong" | ||
}, | ||
matrix: "@helenchong:omg.lol", | ||
signal: "helenchong.08" | ||
}; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ | |
<meta name="generator" content="{{ eleventy.generator }}"> | ||
<meta name="author" content="{{ sitemeta.siteAuthor.name }}"> | ||
<meta name="description" content="{{ desc or metadata.desc or sitemeta.siteDescription }}"> | ||
<meta name="fediverse:creator" content="@[email protected]"> | ||
<meta name="fediverse:creator" content="{{ sitemeta.siteAuthor.fediverse.handle }}"> | ||
<meta property="og:site_name" content="{{ sitemeta.siteName }}" /> | ||
<meta property="og:type" content="{{ "article" if tags and tags.includes("posts") else "website" }}"> | ||
<meta property="og:description" content="{{ desc or metadata.desc or sitemeta.siteDescription }}"> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ eleventyNavigation: | |
|
||
<p>Alternately, you can contact me through other methods:</p> | ||
<ul> | ||
<li>Fediverse: Ping me or send me a private mention to my Mastodon account at <a href="https://social.lol/@helenchong">@[email protected]</a></li> | ||
<li>Fediverse: Ping me or send me a private mention to my Mastodon account at <a href="{{ sitemeta.siteAuthor.fediverse.url }}">{{ sitemeta.siteAuthor.fediverse.handle }}</a></li> | ||
<li>Matrix: Message <code>{{ sitemeta.siteAuthor.matrix }}</code></li> | ||
<li>Signal: Message <code>{{ sitemeta.siteAuthor.signal }}</code></li> | ||
</ul> | ||
|