davideisinger.com

My personal website
Log | Files | Refs | README

commit ac258e9aaf7e561c39267184653d7000756beddd
parent be4d72143bb60273c502cf5d799f9cac3f41beb6
Author: David Eisinger <[email protected]>
Date:   Tue, 10 Jan 2023 22:14:35 -0500

nowrap

Diffstat:
Mthemes/v2/assets/css/style.scss | 4++++
Mthemes/v2/layouts/partials/pinboard.html | 2+-
2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/themes/v2/assets/css/style.scss b/themes/v2/assets/css/style.scss @@ -42,3 +42,7 @@ footer { margin-bottom: 12px; } } + +.nowrap { + white-space: nowrap; +} diff --git a/themes/v2/layouts/partials/pinboard.html b/themes/v2/layouts/partials/pinboard.html @@ -7,7 +7,7 @@ <ul> {{ range first 5 . }} <li> - <a href="{{ .u }}">{{ .d }}</a> ({{ dateFormat "2006-01-02" .dt }}) + <a href="{{ .u }}">{{ .d }}</a> <span class="nowrap">({{ dateFormat "2006-01-02" .dt }})</span> <p>{{ .n }}</p> </li> {{ end }}