From 4f415cdf11ce30c6939a41502b03c761904cea40 Mon Sep 17 00:00:00 2001 From: Elizabeth Barron Date: Fri, 17 Apr 2026 12:08:53 -0400 Subject: [PATCH 1/2] Adds more details for publishing blog post Added sections for adding images and previewing posts. --- README.md | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index cff46a2c..a8ea76f4 100644 --- a/README.md +++ b/README.md @@ -5,6 +5,8 @@ It is built using the PHP static-site generator [Sculpin](https://sculpin.io), a ## Submitting blog posts +### Creating content + To submit a blog post, create a pull request, adding a new file under `source/_posts/` in the format `{4-digit Year}-{2-digit Month}-{2-digit Day}-{dash-separated title}.md`. All posts are written using Markdown with frontmatter YAML, and should have the following general format: @@ -21,9 +23,16 @@ author: Markdown content starts here ``` -## Developing/maintaining the site +### Adding images + +Images for the post should be saved in `post-images/YEAR/folder_for_your_post` and referenced with the full path for the image to render properly on the website. + +### Previewing and publishing your post -The site +After your PR is created, you (or someone else) can preview your post by adding the `safe to preview` label to the PR. This will trigger deployment to a testing server, and the PR can be merged once checked. It's important to preview both on desktop _and_ a mobile device before merging. + + +## Developing/maintaining the site ### Requirements From 6c3078abe8529e2bf82c6eacc63b631f3c6ae2fc Mon Sep 17 00:00:00 2001 From: Elizabeth Barron Date: Wed, 22 Apr 2026 14:17:55 -0400 Subject: [PATCH 2/2] Adds "published at" to metadata --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index a8ea76f4..c354482a 100644 --- a/README.md +++ b/README.md @@ -19,8 +19,9 @@ tags: author: name: Your name url: A URL with information on you +published_at: DD Month YYYY --- -Markdown content starts here +Markdown content starts here - no header title needed ``` ### Adding images