make RSS feed link smaller and more subtle
Build and Deploy / build-and-deploy (push) Successful in 47s

Replace the full neobrutalism card with a compact inline row. The
URL is now clickable to copy, with a brief Copied! confirmation.
This commit is contained in:
2026-07-08 16:39:15 -04:00
parent c3d1adddc2
commit 76425caf65
3 changed files with 24 additions and 16 deletions
+11 -3
View File
@@ -17,7 +17,15 @@ This runs:
Fix every error and warning before proceeding to commit. If `gofmt` reports
unformatted files, run `gofmt -w .` and re-check.
## Commit Messages
## Committing and Pushing
Use concise, descriptive commit messages in imperative mood. Keep the first line
under 72 characters.
After changes appear to be working, commit and push them. Only stage
intended files — never commit binaries, databases, secrets, or other
generated artifacts. Use concise, descriptive commit messages in
imperative mood. Keep the first line under 72 characters.
```sh
git add <intended files>
git commit -m "description of changes"
git push
```