daily + description field

This commit is contained in:
mtgmonkey
2025-08-06 00:01:31 -04:00
parent 2820410127
commit 792c670713
5 changed files with 22 additions and 8 deletions

View File

@@ -1,6 +1,6 @@
+++ +++
title = "Welcome to the blog!"
date = 2025-08-01 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! 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 Thank you for reading this post! I hope you have a wonderful rest of your day
~Andromeda <3 ~ Andromeda <3

View File

@@ -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. 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, Have a wonderful rest of your day,
~Andromeda <3 ~ Andromeda <3

View File

@@ -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

View File

@@ -6,7 +6,7 @@
</h1> </h1>
<ul> <ul>
{% for page in section.pages %} {% for page in section.pages %}
<li><a href="{{ page.permalink | safe }}">{{ page.date}}</a></li> <li><a href="{{ page.permalink | safe }}">{{ page.date }}</a> ~ {{ page.description }}</li>
{% endfor %} {% endfor %}
</ul> </ul>
{% endblock content %} {% endblock content %}

View File

@@ -1,9 +1,9 @@
{% extends "base.html" %} {% extends "base.html" %}
{% block content %} {% block content %}
<h1 class="title"> <!-- <h1 class="title">
{{ page.title }} {{ page.title }}
</h1> </h1> -->
<p class="subtitle"><strong>{{ page.date }}</strong></p> <p class="subtitle"><strong>{{ page.date }}</strong></p>
{{ page.content | safe }} {{ page.content | safe }}
{% endblock content %} {% endblock content %}