-
Notifications
You must be signed in to change notification settings - Fork 35.3k
Claude/add email subscription 01 ga amg emg5u r juq9 yw5 s eu3 #2391
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
raconger
wants to merge
49
commits into
barryclark:master
Choose a base branch
from
raconger:claude/add-email-subscription-01GaAmgEmg5uRJuq9YW5SEu3
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Claude/add email subscription 01 ga amg emg5u r juq9 yw5 s eu3 #2391
raconger
wants to merge
49
commits into
barryclark:master
from
raconger:claude/add-email-subscription-01GaAmgEmg5uRJuq9YW5SEu3
Conversation
This file contains hidden or 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
moving over to semi-healthy.blog
Implemented a clean, minimal email subscription form similar to stephango.com: - Created reusable email-subscription.html include component - Added responsive styling matching the blog's aesthetic - Integrated form on homepage (after posts) and individual post pages - Configured to work with Buttondown or custom newsletter services - Added newsletter configuration options to _config.yml The form is fully configurable via _config.yml and supports: - Buttondown integration (like stephango.com) - Custom form actions for other services - Customizable heading and description text
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
How to Configure
Open _config.yml and update the newsletter section:
newsletter:
enabled: true # Set to false to hide the form
heading: "Subscribe to updates"
description: "Get occasional updates on new ideas, essays, and projects."
service: "buttondown" # Options: "buttondown", "custom", or leave blank
buttondown_username: "yourusername" # Replace with YOUR Buttondown username
To Use Buttondown (like stephango.com):
Sign up at https://buttondown.email
Get your username (appears in your Buttondown URL)
Replace "yourusername" with your actual username in _config.yml
To Use Another Service:
Change service: to "custom"
Add form_action: "https://your-service.com/subscribe"
Update the form fields as needed in _includes/email-subscription.html
Files Modified
_includes/email-subscription.html (new)
style.scss (added styling)
index.html (added subscription form)
_layouts/post.html (added subscription form)
_config.yml (added configuration)
All changes have been committed and pushed to branch claude/add-email-subscription-01GaAmgEmg5uRJuq9YW5SEu3.
The implementation is clean, minimal, and