diff options
author | Caio Lente <7017340+clente@users.noreply.github.com> | 2023-10-17 23:36:32 -0300 |
---|---|---|
committer | Caio Lente <7017340+clente@users.noreply.github.com> | 2023-10-17 23:36:32 -0300 |
commit | d3768fa53bc8f2320a1f90072d1d97dd1916c832 (patch) | |
tree | 8c305bd2399b0d971049f51e04912f2ffa8dbd00 | |
parent | 26fa3804af6130fca1d3b3e2e8e598c2b89289c9 (diff) | |
parent | fc8583e4458ee8675b5a982fbdcf523d4f05373e (diff) | |
download | hugo-bearcub-d3768fa53bc8f2320a1f90072d1d97dd1916c832.tar.gz hugo-bearcub-d3768fa53bc8f2320a1f90072d1d97dd1916c832.tar.bz2 |
Merge remote-tracking branch 'origin/main' into style/herman
-rw-r--r-- | assets/herman.css | 3 | ||||
-rw-r--r-- | layouts/_default/single.html | 12 |
2 files changed, 6 insertions, 9 deletions
diff --git a/assets/herman.css b/assets/herman.css index cd84aec..ce5ae41 100644 --- a/assets/herman.css +++ b/assets/herman.css @@ -132,9 +132,8 @@ ul.blog-posts li span { min-width: 11ch; } -time { +p.byline { opacity: 0.5; - font-style: normal; } code { diff --git a/layouts/_default/single.html b/layouts/_default/single.html index aec87f5..1dbc8da 100644 --- a/layouts/_default/single.html +++ b/layouts/_default/single.html @@ -1,13 +1,11 @@ {{ define "main" }} {{ if not .Params.menu }} <h1>{{ .Title }}</h1> -<p> - <i> - <time datetime='{{ .Date.Format "2006-01-02" }}' pubdate> - {{ .Date.Format (default "2006-01-02" .Site.Params.dateFormat) }} - </time> - {{ with .Params.author }}· {{.}}{{ end }} - </i> +<p class="byline"> + <time datetime='{{ .Date.Format "2006-01-02" }}' pubdate> + {{ .Date.Format (default "2006-01-02" .Site.Params.dateFormat) }} + </time> + {{ with .Params.author }}· {{.}}{{ end }} </p> {{ end }} <content> |