diff options
Diffstat (limited to 'layouts/partials/hero.html')
-rw-r--r-- | layouts/partials/hero.html | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/layouts/partials/hero.html b/layouts/partials/hero.html index 69bec8a..8ed0b62 100644 --- a/layouts/partials/hero.html +++ b/layouts/partials/hero.html @@ -5,7 +5,7 @@ , url('{{ .RelPermalink }}') center {{ end }};" > - <div class="max-w-screen-md mx-auto px-2 near-white font-serif text-center"> + <div class="max-w-screen-md mx-auto px-2 text-white font-serif text-center"> {{ if eq .Type "authors" }} {{ $avatar := index .Params.images 1 }} {{ if hasPrefix $avatar "http" }} @@ -16,22 +16,22 @@ {{ with $avatar }} <img src="{{ .RelPermalink }}" - class="br-100 w-64 block mx-auto" + class="rounded-full w-64 block mx-auto" alt="" /> {{ end }} - <h1 class="text-5xl my-1 font-bold"> + <h1 class=""> {{ .Params.Name }} </h1> - <h2 class="text-2xl fw3 my-1"> + <h3 class="font-normal"> {{ .Params.role | markdownify }} - </h2> + </h3> {{ with .Params.Subtitle }} - <h2 class="text-2xl fw3 my-1"> + <h3 class=""> {{ . | markdownify }} - </h2> + </h3> {{ end }} @@ -40,7 +40,7 @@ </div> {{ else }} - <h1 class="text-5xl my-1 font-bold">{{ .Title }}</h1> + <h1 class="berkshire-swash">{{ .Title }}</h1> {{ .Content }} {{ end }} </div> |