diff --git a/themes/quadrant/assets/css/main.css b/themes/quadrant/assets/css/main.css index f5f18f9..7c4efc3 100644 --- a/themes/quadrant/assets/css/main.css +++ b/themes/quadrant/assets/css/main.css @@ -18,6 +18,7 @@ html, body, p, h1, h2, h3, h4, h5, h6 { margin: 0; padding: 0; + line-height: 1.20 } main h1:first-child { @@ -63,6 +64,15 @@ body { padding: 10px 10px; } +.post-title, .post-time { + line-height: 0.8; +} + +.post-title .post-time { + font-size: 10pt; + font-weight: normal; +} + a { color: #00e; text-decoration: none; diff --git a/themes/quadrant/layouts/_default/home.html b/themes/quadrant/layouts/_default/home.html index 4efdba3..2b001f7 100644 --- a/themes/quadrant/layouts/_default/home.html +++ b/themes/quadrant/layouts/_default/home.html @@ -1,10 +1,12 @@ {{ define "main" }} {{ .Content }} {{ range site.RegularPages }} -

{{ .LinkTitle }}

- {{ $dateMachine := .Date | time.Format "2006-01-02T15:04:05-07:00" }} - {{ $dateHuman := .Date | time.Format ":date_long" }} -
- {{ .Summary | strings.Truncate 200 }} + {{ $dateMachine := .Date | time.Format "2006-01-02T15:04:05-07:00" }} + {{ $dateHuman := .Date | time.Format ":date_long" }} +

+ {{ .LinkTitle }}
+ +

+

{{ .Summary | strings.Truncate 200 }}

{{ end }} {{ end }} diff --git a/themes/quadrant/layouts/_default/single.html b/themes/quadrant/layouts/_default/single.html index 7e286c8..8686699 100644 --- a/themes/quadrant/layouts/_default/single.html +++ b/themes/quadrant/layouts/_default/single.html @@ -1,9 +1,9 @@ {{ define "main" }} -

{{ .Title }}

+

{{ .Title }}

{{ $dateMachine := .Date | time.Format "2006-01-02T15:04:05-07:00" }} {{ $dateHuman := .Date | time.Format ":date_long" }} - + {{ .Content }} {{ partial "terms.html" (dict "taxonomy" "tags" "page" .) }}