Submit Your Slop
Submissions are handled via GitLab merge requests against the public content repo: slop-daily/slop-content.
- Fork the slop-content repo.
- Add a Markdown file at
posts/YYYY/MM/your-slug.md. - Include at least one tag; tags power the Series pages.
- Set
authorto your GitLab username. - Open a merge request with a short summary and source context.
See the submission guide in the repo for the exact frontmatter schema and example post format.
Email patch submission (advanced)
If you prefer email patches, you can send a Git patch to submissions@slopdaily.com. This path is intentionally more advanced and validates basic Git fluency.
- Clone the repo and create a branch.
- Add your post at
posts/YYYY/MM/your-slug.md. - Set
authorto your GitLab username. - Commit with the subject
Add post: Your Title. - Send the patch with
git send-email.
git clone https://gitlab.com/slop-daily/slop-content.git
cd slop-content
git checkout -b add-post-your-slug
git add posts/YYYY/MM/your-slug.md
git commit -m "Add post: Your Title"
git send-email --to submissions@slopdaily.com --subject-prefix="[slop-content]" HEAD^..HEAD
If git send-email is not configured, fall back to a GitLab merge
request.