Skip to content

Commit

Permalink
Add poetry
Browse files Browse the repository at this point in the history
  • Loading branch information
sturmer committed Oct 2, 2022
1 parent 79786a8 commit ece00da
Show file tree
Hide file tree
Showing 5 changed files with 38 additions and 9 deletions.
6 changes: 3 additions & 3 deletions content/index.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: Benvenuti su gergel.im!
title: Welcome to gergel.im
---

Ciao. Mi chiamo Gianluca e scrivo storie.
My name is Gianluca and I write things.

Se cerchi le poche cose che ho scritto in tema di ingegneria del software, le ho spostate su [ciccarelli.dev](//www.ciccarelli.dev).
If you're here but were looking for the few things I've written about software, I've moved them to [ciccarelli.dev](//www.ciccarelli.dev).
2 changes: 1 addition & 1 deletion content/songs_to_the_stone/mario-the-butcher.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: "Mario the butcher"
created_at: 2022-09-11
created_at: 2022-09-12
tags: ['song']
---

Expand Down
29 changes: 29 additions & 0 deletions content/songs_to_the_stone/your-hands.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
---
title: "Your Hands"
created_at: 2022-09-30
tags: ['song']
---

You had long, ugly, bony hands<br />
Your knuckles were swollen<br />
Your nails chewed up and ruined

And yet I bear the mark of them on my face<br />
From that day you landed to deliver bad news<br />
And put your forehead against mine,<br />
Closed your eyes, and put those hands,<br />
&nbsp;&nbsp;&nbsp;&nbsp;beautiful, graceful, slender,<br />
On my grateful face<br />
And I put mine on them because I couldn't believe you were there with me.

And how long we've stayed like that,<br />
With me worried of bystanders thinking we were crazy,<br />
But wasn't I? weren't you, just a bit?<br />
The knots of my worry will strangle me one day.

When will that day come<br />
when I'll be able to think of all that<br />
with just gratitude, and without the bitterness?

I'm afraid that will be the day when the memory of you will be so faded<br />
that it will only remain as some dull background of cosmic pain that I can feel in my bones.
6 changes: 3 additions & 3 deletions content/stylesheet.css
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ a:hover {

#main p {
margin-top: 2em;
font-size: 2em;
font-size: 1.2em;
line-height: 1.1em;
}

Expand All @@ -56,7 +56,7 @@ a:hover {
}

#main ul li {
list-style-type: oriya;
list-style-type: none;
}

#sidebar {
Expand Down Expand Up @@ -110,4 +110,4 @@ th {
td {
border: 1px solid #000000;
padding: .5em;
}
}
4 changes: 2 additions & 2 deletions layouts/songs_to_the_stone.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ <h1>
<%= yield %>

<ul>
<% items_with_tag('song').each do |song| %>
<% items_with_tag('song').sort_by { |s| attribute_to_time(s[:created_at])}.each do |song| %>
<li>
<%= link_to song[:title], song.path %> (<%= song[:created_at] %>)
<%= song[:created_at] %> <%= link_to song[:title], song.path %>
</li>
<% end %>
</ul>
Expand Down

0 comments on commit ece00da

Please sign in to comment.