From 792c6707139129962284b994961113ca9dfe2d6f Mon Sep 17 00:00:00 2001 From: mtgmonkey Date: Wed, 6 Aug 2025 00:01:31 -0400 Subject: [PATCH] daily + description field --- content/daily/2025-08-01.md | 4 ++-- content/daily/2025-08-04.md | 6 +++--- content/daily/2025-08-05.md | 14 ++++++++++++++ templates/blog.html | 2 +- templates/blog_page.html | 4 ++-- 5 files changed, 22 insertions(+), 8 deletions(-) create mode 100644 content/daily/2025-08-05.md diff --git a/content/daily/2025-08-01.md b/content/daily/2025-08-01.md index 3b422c4..ee41507 100644 --- a/content/daily/2025-08-01.md +++ b/content/daily/2025-08-01.md @@ -1,6 +1,6 @@ +++ -title = "Welcome to the blog!" date = 2025-08-01 +description = "Welcome to the blog" +++ I will be posting every day from today until my return from Germany! I will take the train down to Washington D.C. on the 6th of August and will say goodbye to my parents on the 7th. My excitement is nearly unbearable! @@ -17,4 +17,4 @@ As always, I have a number of programming projects going on at the moment. I jus Thank you for reading this post! I hope you have a wonderful rest of your day -~Andromeda <3 +~ Andromeda <3 diff --git a/content/daily/2025-08-04.md b/content/daily/2025-08-04.md index 07b257c..3ff333f 100644 --- a/content/daily/2025-08-04.md +++ b/content/daily/2025-08-04.md @@ -1,6 +1,6 @@ +++ -title = "" -date = "2025-08-04" +date = 2025-08-04 +description = "Am I ready?" +++ I need to work to make this as much a habit as journaling is. I need to pack today. I think I have everything in line, but one can never be too sure. @@ -18,4 +18,4 @@ I'm also having a couple of friends over for dinner tomorrow, the last dinner in Have a wonderful rest of your day, -~Andromeda <3 +~ Andromeda <3 diff --git a/content/daily/2025-08-05.md b/content/daily/2025-08-05.md new file mode 100644 index 0000000..2c158b4 --- /dev/null +++ b/content/daily/2025-08-05.md @@ -0,0 +1,14 @@ ++++ +date = 2025-08-05 +description = "I'm ready." ++++ + +I am packed! My checked bag initially weighed in at (yikes!) 60 pounds, but, with my stepmother's insight that 'they have books in German in Germany', I managed to cut down to just under 44 pounds. + +How time flies - I had an appointment at 1300 and next thing you know it's 2330 and I haven't even done my vocabulary. My goodness - luckily I have 'midnight' set to 4 in the morning on my vocabulary app. I have 4 hours yet! Two of my good friends just left my house for the last time in this episode of our lives. I'm literally crying, I'm going to miss everyone so much. I hope I make friends as chill in Germany, just playing games and good music late into the night. + +I got a haircut! It has *layers*, so I look more tasteful now. The shortest layer is just long enough to tuck behind my ear and the longest are just a touch shorter than what I had before - just enough to get the dead ends off. I need to get a good night's sleep tonight, tomorrow is going to be a long day. + +The time I spend with family, friends, and educators means more to me than I can even express. This is going to be a long journey but I know I am strong enough. + +~ Andromeda <3 diff --git a/templates/blog.html b/templates/blog.html index c254a5c..6865872 100644 --- a/templates/blog.html +++ b/templates/blog.html @@ -6,7 +6,7 @@ {% endblock content %} diff --git a/templates/blog_page.html b/templates/blog_page.html index f0f638e..12339dd 100644 --- a/templates/blog_page.html +++ b/templates/blog_page.html @@ -1,9 +1,9 @@ {% extends "base.html" %} {% block content %} -

+

{{ page.date }}

{{ page.content | safe }} {% endblock content %}