diff options
author | Oscar Najera <hi@oscarnajera.com> | 2025-01-05 23:44:45 +0100 |
---|---|---|
committer | Oscar Najera <hi@oscarnajera.com> | 2025-01-05 23:45:00 +0100 |
commit | 4b76a856b2841fb197acc982ed168bc52db6ea3d (patch) | |
tree | bb92327990d20b262dca7f597453c8ae7bfee16d /layouts/_default/author.html | |
parent | f9e5452a0046e6e47425f0c58d438d0f573fece9 (diff) | |
download | hugo-minimalist-theme-4b76a856b2841fb197acc982ed168bc52db6ea3d.tar.gz hugo-minimalist-theme-4b76a856b2841fb197acc982ed168bc52db6ea3d.tar.bz2 hugo-minimalist-theme-4b76a856b2841fb197acc982ed168bc52db6ea3d.zip |
add tailwind and do some replacements
Diffstat (limited to 'layouts/_default/author.html')
-rw-r--r-- | layouts/_default/author.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/layouts/_default/author.html b/layouts/_default/author.html index a0bb1fa..ad1602f 100644 --- a/layouts/_default/author.html +++ b/layouts/_default/author.html @@ -6,7 +6,7 @@ {{- $rawContentSections := split .RawContent $sectionDelimiter -}} {{ range $rawContentSections }} <div class="stripe-dark"> - <div class="mw7 center pv2 lh-copy f4-ns ph1 main-content"> + <div class="max-w-screen-md mx-auto py-2 lh-copy f4-ns px-1 main-content"> {{ . | markdownify }} </div> </div> @@ -15,7 +15,7 @@ {{ with where .Pages "Type" "publication" }} {{ if gt (len .) 0 }} <div class="stripe-dark"> - <div class="mw7 center pv2 lh-copy f4-ns ph1"> + <div class="max-w-screen-md mx-auto py-2 lh-copy f4-ns px-1"> <h2 class="baskerville lh-title f2">Publications</h2> {{ range . }} {{ partial "post.html" . }} |