Submit Your Slop

Submissions are handled via GitLab merge requests against the public content repo: slop-daily/slop-content.

  1. Fork the slop-content repo.
  2. Add a Markdown file at posts/YYYY/MM/your-slug.md.
  3. Include at least one tag; tags power the Series pages.
  4. Set author to your GitLab username.
  5. 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.

  1. Clone the repo and create a branch.
  2. Add your post at posts/YYYY/MM/your-slug.md.
  3. Set author to your GitLab username.
  4. Commit with the subject Add post: Your Title.
  5. 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.