This commit is contained in:
parent
a5daeb08ca
commit
0480978cde
4 changed files with 20 additions and 14 deletions
|
@ -5,9 +5,13 @@ buttons:
|
|||
- text: Full Artist Bio & Statement
|
||||
url: '/bio'
|
||||
- text: Cover Letter
|
||||
url: '/resume'
|
||||
url: '/Ian_Gallo_RESUME.pdf'
|
||||
icon: |
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512" style="fill: white; width: 0.8rem"><path d="M64 0C28.7 0 0 28.7 0 64L0 448c0 35.3 28.7 64 64 64l256 0c35.3 0 64-28.7 64-64l0-288-128 0c-17.7 0-32-14.3-32-32L224 0 64 0zM256 0l0 128 128 0L256 0zM216 232l0 102.1 31-31c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-72 72c-9.4 9.4-24.6 9.4-33.9 0l-72-72c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l31 31L168 232c0-13.3 10.7-24 24-24s24 10.7 24 24z"/></svg>
|
||||
- text: Resume
|
||||
url: '/bio'
|
||||
url: '/Ian_Gallo_CV.pdf'
|
||||
icon: |
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512" style="fill: white; width: 0.8rem"><path d="M64 0C28.7 0 0 28.7 0 64L0 448c0 35.3 28.7 64 64 64l256 0c35.3 0 64-28.7 64-64l0-288-128 0c-17.7 0-32-14.3-32-32L224 0 64 0zM256 0l0 128 128 0L256 0zM216 232l0 102.1 31-31c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-72 72c-9.4 9.4-24.6 9.4-33.9 0l-72-72c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l31 31L168 232c0-13.3 10.7-24 24-24s24 10.7 24 24z"/></svg>
|
||||
art:
|
||||
- main: /img/art/thumb/oya.webp
|
||||
title: Oyá
|
||||
|
|
BIN
static/Ian_Gallo_CV.pdf
Normal file
BIN
static/Ian_Gallo_CV.pdf
Normal file
Binary file not shown.
BIN
static/Ian_Gallo_RESUME.pdf
Normal file
BIN
static/Ian_Gallo_RESUME.pdf
Normal file
Binary file not shown.
|
@ -1,14 +1,16 @@
|
|||
{{ if .Params.buttons }}
|
||||
<div class="mt-4">
|
||||
{{ range .Params.buttons}}
|
||||
<a href="{{ .url }}"
|
||||
><button
|
||||
type="button"
|
||||
class="px-4 py-4 sm:py-2 sm:px-3 text-xs font-medium text-center text-white bg-black rounded-lg focus:ring-4 focus:outline-none hover:bg-gray-800 transition-all duration-200"
|
||||
>
|
||||
{{ .text }}
|
||||
</button>
|
||||
</a>
|
||||
{{ end }}
|
||||
{{ if .Params.buttons }}
|
||||
<div class="mt-4 flex flex-row gap-4">
|
||||
{{ range .Params.buttons}}
|
||||
<a href="{{ .url }}"
|
||||
><button
|
||||
style="white-space: nowrap"
|
||||
type="button"
|
||||
class="flex flex-row gap-2 px-4 py-4 sm:py-2 sm:px-3 text-xs font-medium text-center text-white bg-black rounded-lg focus:ring-4 focus:outline-none hover:bg-gray-800 transition-all duration-200"
|
||||
>
|
||||
{{ if .icon }} {{ .icon | safeHTML }} {{ end }} {{ if .text}} {{ .text }}
|
||||
{{ end }}
|
||||
</button>
|
||||
</a>
|
||||
{{ end }}
|
||||
</div>
|
||||
{{ end }}
|
||||
|
|
Loading…
Add table
Reference in a new issue