From cc1e97c8b7a24a3a665224a21c99630c796ddbaf Mon Sep 17 00:00:00 2001 From: Sam Hadow Date: Sun, 23 Mar 2025 00:06:12 +0100 Subject: [PATCH] date fix --- ...jekyll.md => 2025-03-23-generate-a-website-with-jekyll.md} | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) rename _posts/{2025-03-21-generate-a-website-with-jekyll.md => 2025-03-23-generate-a-website-with-jekyll.md} (98%) diff --git a/_posts/2025-03-21-generate-a-website-with-jekyll.md b/_posts/2025-03-23-generate-a-website-with-jekyll.md similarity index 98% rename from _posts/2025-03-21-generate-a-website-with-jekyll.md rename to _posts/2025-03-23-generate-a-website-with-jekyll.md index 475c25d..3a54daa 100644 --- a/_posts/2025-03-21-generate-a-website-with-jekyll.md +++ b/_posts/2025-03-23-generate-a-website-with-jekyll.md @@ -34,7 +34,9 @@ cd site-name ``` Then during development I can just serve the website on a development machine and see if the results look good with: -```bundle exec jekyll serve``` +``` +bundle exec jekyll serve +``` If it looks good enough I can commit and push the website code and then deploy it on my server. To deploy it on my server I should automate things a bit more but for now I just have a make target to build the website and a make target to copy the files from _site to /var/www/html.