-
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
2 changed files
with
11 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 |
---|---|---|
|
@@ -4,7 +4,9 @@ export const siteUrl = "https://" + siteDomain || "http://localhost:8080"; | |
export const siteAuthor = { | ||
name: "Helen Chong", | ||
email: "[email protected]", | ||
url: siteUrl + "/about" | ||
url: siteUrl + "/about", | ||
matrix: "@helenchong:omg.lol", | ||
signal: "helenchong.08" | ||
}; | ||
export const siteDescription = siteAuthor.name + "'s developer portfolio and blog website."; | ||
export const siteLang = "en"; | ||
|
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 |
---|---|---|
|
@@ -6,10 +6,16 @@ eleventyNavigation: | |
order: 5 | ||
--- | ||
|
||
<p>Want to get in touch with me? I am always open to connect with more people, so feel free to reach out by filling out the contact form below.</p> | ||
<p>Want to get in touch with me? I am always open to connect with more people, so feel free to reach out by filling out the email contact form below.</p> | ||
|
||
<p>You can also contact me by pinging me or sending me a private mention on Mastodon at <a href="https://tech.lgbt/@helenclx">@[email protected]</a>.</p> | ||
<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://tech.lgbt/@helenclx">@[email protected]</a></li> | ||
<li>Matrix: Message <code>{{ sitemeta.siteAuthor.matrix }}</code></li> | ||
<li>Signal: Message <code>{{ sitemeta.siteAuthor.signal }}</code></li> | ||
</ul> | ||
|
||
<h2>Email Contact Form</h2> | ||
{% set letterbirdUser = "helenchongdev" %} | ||
<section class="contact"> | ||
<script data-letterbirduser="{{ letterbirdUser }}" src="https://letterbird.co/embed/v1.js"></script> | ||
|