update
All checks were successful
Hugo / build (push) Successful in 11s

This commit is contained in:
brooke 2024-06-10 20:03:55 -04:00
parent a7c306b237
commit 408cedc50b
4 changed files with 7 additions and 12 deletions

View file

@ -31,16 +31,16 @@ params:
main: main:
- url: 'mailto:iangalloart@gmail.com' - url: 'mailto:iangalloart@gmail.com'
icon: > icon: >
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="16" <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24"
height="16" fill="none" stroke="currentColor" stroke-linecap="round" height="24" fill="none" stroke="currentColor" stroke-linecap="round"
stroke-linejoin="round" stroke-width="2"> stroke-linejoin="round" stroke-width="2">
<circle cx="12" cy="12" r="4"></circle> <circle cx="12" cy="12" r="4"></circle>
<path d="M16 8v5a3 3 0 0 0 6 0v-1a10 10 0 1 0-3.92 7.94"></path> <path d="M16 8v5a3 3 0 0 0 6 0v-1a10 10 0 1 0-3.92 7.94"></path>
</svg> </svg>
- url: 'https://www.instagram.com/gallowelding/' - url: 'https://www.instagram.com/gallowelding/'
icon: > icon: >
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="16" <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24"
height="16" fill="none" stroke="currentColor" stroke-linecap="round" height="24" fill="none" stroke="currentColor" stroke-linecap="round"
stroke-linejoin="round" stroke-width="2"> stroke-linejoin="round" stroke-width="2">
<rect height="20" rx="5" ry="5" width="20" x="2" y="2"></rect> <rect height="20" rx="5" ry="5" width="20" x="2" y="2"></rect>
<path d="M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z"></path> <path d="M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z"></path>

View file

@ -4,7 +4,7 @@
<div class="w-9/12 flex flex-row justify-between"> <div class="w-9/12 flex flex-row justify-between">
<div class="flex flex-row gap-8"> <div class="flex flex-row gap-8">
{{ range .Site.Menus.main }} {{ range .Site.Menus.main }}
<a class="text-white hover:text-gray-400" href="{{ .URL }}"> <a class="text-white hover:text-gray-400" href="{{ .URL | safeURL }}">
{{ $text := .Name | safeHTML }} {{ $text }} {{ $text := .Name | safeHTML }} {{ $text }}
</a> </a>
{{ end }} {{ end }}

View file

@ -1,10 +1,5 @@
<section <section
style=" style="background-blend-mode: multiply; background: url({{ .Site.Params.headerImg }}) rgba(0, 0, 0, 0.75); background-position: center; background-size: cover;"
background-blend-mode: multiply;
background: url({{ .Site.Params.headerImg }}) rgba(0, 0, 0, 0.75);
background-position: center;
background-size: cover;
"
class="flex justify-start py-36 px-5" class="flex justify-start py-36 px-5"
> >
<div class="flex flex-col w-full mx-auto container"> <div class="flex flex-col w-full mx-auto container">

File diff suppressed because one or more lines are too long