diff options
Diffstat (limited to 'layouts/_default/author.html')
-rw-r--r-- | layouts/_default/author.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/layouts/_default/author.html b/layouts/_default/author.html index ad1602f..b2277dd 100644 --- a/layouts/_default/author.html +++ b/layouts/_default/author.html @@ -5,8 +5,8 @@ {{- $sectionDelimiter := "<!-- section break -->" -}} {{- $rawContentSections := split .RawContent $sectionDelimiter -}} {{ range $rawContentSections }} - <div class="stripe-dark"> - <div class="max-w-screen-md mx-auto py-2 lh-copy f4-ns px-1 main-content"> + <div class="even:bg-gray-200"> + <div class="max-w-screen-md mx-auto py-2 px-1 main-content"> {{ . | markdownify }} </div> </div> @@ -14,9 +14,9 @@ {{ with where .Pages "Type" "publication" }} {{ if gt (len .) 0 }} - <div class="stripe-dark"> - <div class="max-w-screen-md mx-auto py-2 lh-copy f4-ns px-1"> - <h2 class="baskerville lh-title f2">Publications</h2> + <div class="even:bg-gray-200"> + <div class="max-w-screen-md mx-auto py-2 px-1"> + <h2 class="baskerville">Publications</h2> {{ range . }} {{ partial "post.html" . }} {{ end }} |