-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Remove my social media links from my contact page * Create a new "subscribe" page with ways to follow me * Add the newsletter sign up to the homepage
- Loading branch information
1 parent
8848111
commit 9ee4180
Showing
7 changed files
with
105 additions
and
37 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
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 |
---|---|---|
@@ -0,0 +1,44 @@ | ||
<style> | ||
#buttondown { | ||
text-align: center; | ||
} | ||
|
||
#buttondown input[type="email"] { | ||
padding: 10px; | ||
font-size: 1.5em; | ||
border-radius: 5px; | ||
border: 3px solid var(--primary-color); | ||
} | ||
|
||
#buttondown input[type="submit"] { | ||
background: var(--primary-color); | ||
font-size: 1.2em; | ||
color: white; | ||
padding: 6px 10px; | ||
border-radius: 5px; | ||
border: none; | ||
} | ||
|
||
#buttondown input[type="submit"]:active { | ||
transform: translate(0, 2px); | ||
} | ||
</style> | ||
|
||
If you want to stay up-to-date with what I'm doing, you can subscribe to my monthly newsletter: | ||
|
||
<form | ||
id="buttondown" | ||
action="https://buttondown.com/api/emails/embed-subscribe/alexwlchan" | ||
method="post" | ||
target="popupwindow" | ||
onsubmit="window.open('https://buttondown.com/alexwlchan', 'popupwindow')" | ||
> | ||
<input type="email" name="email" id="bd-email" placeholder="Email address" required /> | ||
<input type="submit" value="Subscribe" /> | ||
</form> | ||
|
||
I'll send you an email at the end of every month, with a short summary of what I've been up to, links to stuff I've written, and a list of things I've enjoyed recently. | ||
|
||
Check out [the archives](https://buttondown.com/alexwlchan/archive/) if you want to see what you'll be getting. | ||
|
||
I won't spam you, I won't sell your email address, and you can unsubscribe whenever you like. |
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 |
---|---|---|
|
@@ -61,6 +61,6 @@ | |
{{ parsed_content.html }} | ||
</main> | ||
|
||
{% include_cached footer.html %} | ||
{% include footer.html %} | ||
</body> | ||
</html> |
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
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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
--- | ||
layout: page | ||
title: Subscribe! | ||
nav_section: subscribe | ||
footer: | ||
exclude_newsletter: true | ||
--- | ||
{% include newsletter.html %} | ||
|
||
## Social media | ||
|
||
I have a limited presence on social media, where I post my "edited highlights" -- links to stuff I've made that I think is particularly interesting or notable. | ||
Follow me at: | ||
|
||
* Mastodon: <https://social.alexwlchan.net/@alex> | ||
* Bluesky: <https://bsky.app/profile/alexwlchan.bsky.social/> | ||
* LinkedIn: <https://www.linkedin.com/in/alexwlchan/> | ||
* Instagram: <https://www.instagram.com/alexwlchan/> | ||
|
||
(I used to have a Twitter account, but I no longer post there.) | ||
|
||
## RSS feeds | ||
|
||
If you're an old-school nerd like me, you can subscribe to an RSS feed of my writing on this site: | ||
|
||
* Articles: <https://alexwlchan.net/atom.xml> | ||
* Today I Learned posts: <https://alexwlchan.net/til/atom.xml> |