Compare commits

...

3 Commits

10 changed files with 25 additions and 8 deletions

View File

@@ -14,9 +14,9 @@ categories:
aliases: aliases:
--- ---
I gave myself the gift of a large hike and no means of communication. :) To the tune of "Happy Birthday."
To the tune of "Happy Birthday": {{% audio src="/audio/poetry/birthday-2025.aac" %}}
> Happy Birthday to me, <br> > Happy Birthday to me, <br>
> I hiked up Rice Peak! <br> > I hiked up Rice Peak! <br>
@@ -24,3 +24,5 @@ To the tune of "Happy Birthday":
> and without using a phone! > and without using a phone!
> >
> -- {{% author "bug" %}} > -- {{% author "bug" %}}
On the day after my birthday I gave myself the gift of a large hike and no means of communication. :)

View File

@@ -12,6 +12,8 @@ categories:
- musings - musings
--- ---
{{% audio src="/audio/poetry/friends.aac" %}}
> Friend, friend, what is a friend? <br> > Friend, friend, what is a friend? <br>
> Surely much more than a means to an end! > Surely much more than a means to an end!
> >

View File

@@ -14,6 +14,8 @@ categories:
aliases: aliases:
--- ---
{{% audio src="/audio/poetry/gullible.aac" %}}
> They give you a whale, <br> > They give you a whale, <br>
> a big fairy tale. <br> > a big fairy tale. <br>
> You don't take it to heart, <br> > You don't take it to heart, <br>

View File

@@ -12,9 +12,9 @@ series:
categories: categories:
- musings - musings
aliases: aliases:
# {{% audio src="/audio/poetry/self-love.mp3" %}}
--- ---
{{% audio src="/audio/poetry/self-love.aac" %}}
> Life is an incredible thing to cherish <br> > Life is an incredible thing to cherish <br>
> all the way until we perish. > all the way until we perish.

View File

@@ -0,0 +1 @@
TBD/TODO

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -1,17 +1,27 @@
/* Prevent excess gaps underneath headers. Looks horrible! */ /* Prevent excess gaps underneath headers. Looks horrible! */
h1,h2,p,div { h1,h2,p,div,blockquote {
margin-bottom: 16px;
margin-top: 8px; margin-top: 8px;
margin-bottom: 16px;
} }
h3,h4 { h3,h4 {
margin-bottom: 12px;
margin-top: 6px; margin-top: 6px;
margin-bottom: 12px;
} }
h5,h6 { h5,h6 {
margin-bottom: 8px;
margin-top: 4px; margin-top: 4px;
margin-bottom: 8px;
} }
pre,strong { pre,strong {
margin-bottom: 4px;
margin-top: 2px; margin-top: 2px;
margin-bottom: 4px;
}
pre {
padding: 2px;
padding-left: 20px;
}
audio {
padding-top: 5px;
padding-bottom: 20px;
} }