From 7b572bf508afb1758b205a9868505757c9996895 Mon Sep 17 00:00:00 2001 From: Bill Niblock Date: Sat, 11 Jul 2020 22:17:42 -0400 Subject: [PATCH] Update posts, and styles to include wtfpl notice --- _includes/cor_menu.html | 3 ++- _layouts/corrupt_post.html | 16 ++++++++++++---- src/styles/corrupt_layout.css | 12 ++++++++++++ 3 files changed, 26 insertions(+), 5 deletions(-) diff --git a/_includes/cor_menu.html b/_includes/cor_menu.html index 66df011..23c07a3 100644 --- a/_includes/cor_menu.html +++ b/_includes/cor_menu.html @@ -15,7 +15,8 @@

This site is a small slice of internet real-estate that I use for occasional writing. Nothing I say is visionary or profound. I will - tend to focus on technology, gaming, and philosophy. + tend to focus on technology, gaming, and philosophy. All opinions my + own.

The Vagabond

diff --git a/_layouts/corrupt_post.html b/_layouts/corrupt_post.html index b70a364..459e411 100644 --- a/_layouts/corrupt_post.html +++ b/_layouts/corrupt_post.html @@ -31,10 +31,18 @@

{{ content }} -

[ {{ page.author }} ][ {{ page.pub }} ][ - {% for topic in page.topics %} - {{topic}} - {% endfor %}]

+

+ [ {{ page.author }} ] + [ {{ page.pub }} ] + [ + {% for topic in page.topics %} + {{topic}} + {% endfor %}] + + [ + wtfpl ] + +

{% include cor_menu.html %} diff --git a/src/styles/corrupt_layout.css b/src/styles/corrupt_layout.css index d280887..406810e 100644 --- a/src/styles/corrupt_layout.css +++ b/src/styles/corrupt_layout.css @@ -108,6 +108,12 @@ h3 + table { text-align: right; } +h4.author_info { + display: flex; + justify-content: space-around; + flex-flow: column; +} + @supports (display: grid) { .cor_page { @@ -177,5 +183,11 @@ h3 + table { text-align: right; color: grey; } + + h4.author_info { + display: flex; + justify-content: space-around; + flex-flow: row wrap; + } } }