misc style changes, remove aspect ratio option from gallery, convert toml to yaml for config file
This commit is contained in:
parent
4abf70c756
commit
e0f1d48c55
9 changed files with 71 additions and 110 deletions
69
config.toml
69
config.toml
|
@ -1,69 +0,0 @@
|
|||
baseURL = "https://gallowelding.com"
|
||||
title = "Gallo Weld & Fab"
|
||||
theme = "gallo"
|
||||
|
||||
[menu]
|
||||
|
||||
[[menu.main]]
|
||||
identifier = "Catalog"
|
||||
name = "Catalog"
|
||||
url = "/catalog/"
|
||||
weight = 1
|
||||
|
||||
[[menu.main]]
|
||||
identifier = "Art"
|
||||
name = "Art"
|
||||
url = "/art/"
|
||||
weight = 2
|
||||
|
||||
[[menu.main]]
|
||||
identifier = "FAQ"
|
||||
name = "FAQ"
|
||||
url = "/faq/"
|
||||
weight = 3
|
||||
|
||||
[[menu.main]]
|
||||
identifier = "About"
|
||||
name = "About"
|
||||
url = "/about/"
|
||||
weight = 4
|
||||
|
||||
[[menu.main]]
|
||||
identifier = "Contact"
|
||||
name = "Contact"
|
||||
url = "/contact/"
|
||||
weight = 5
|
||||
button = true # WIP
|
||||
|
||||
###### WIP ######
|
||||
[social]
|
||||
|
||||
[[social.main]]
|
||||
url = "mailto:iangalloart@gmail.com"
|
||||
icon = '''
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="16" height="16" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2">
|
||||
<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>
|
||||
</svg>
|
||||
'''
|
||||
|
||||
[[social.main]]
|
||||
url = "https://www.instagram.com/gallowelding/"
|
||||
icon = '''
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="16" height="16" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2">
|
||||
<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>
|
||||
<line x1="17.5" x2="17.51" y1="6.5" y2="6.5"></line>
|
||||
</svg>
|
||||
'''
|
||||
###### /WIP ######
|
||||
|
||||
[taxonomies]
|
||||
tag = "tags"
|
||||
|
||||
[params]
|
||||
logo = "/img/gallo_welding_inverted.webp"
|
||||
copyName = "John Doe"
|
||||
headerTitle = "Gallo Welding & Fabrication"
|
||||
headerImg = "/img/wide.webp"
|
||||
headerDesc = "Gallo Welding, based in Atlanta, provides exceptional structures for diverse industries. With over a decade of experience, Ian Gallo specializes in hand-welded, durable structures at affordable prices while prioritizing professionalism and inclusivity."
|
59
config.yaml
Normal file
59
config.yaml
Normal file
|
@ -0,0 +1,59 @@
|
|||
baseURL: 'https://gallowelding.com'
|
||||
title: Gallo Weld & Fab
|
||||
theme: gallo
|
||||
|
||||
params:
|
||||
logo: /img/gallo_welding_inverted.webp
|
||||
copyName: John Doe
|
||||
headerTitle: Gallo Welding & Fabrication
|
||||
headerImg: /img/wide.webp
|
||||
headerDesc: >
|
||||
Gallo Welding, based in Atlanta, provides exceptional structures for diverse
|
||||
industries. With over a decade of experience, Ian Gallo specializes in
|
||||
hand-welded, durable structures at affordable prices while prioritizing
|
||||
professionalism and inclusivity.
|
||||
social:
|
||||
main:
|
||||
- url: 'mailto:iangalloart@gmail.com'
|
||||
icon: >
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="16"
|
||||
height="16" fill="none" stroke="currentColor" stroke-linecap="round"
|
||||
stroke-linejoin="round" stroke-width="2">
|
||||
<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>
|
||||
</svg>
|
||||
- url: 'https://www.instagram.com/gallowelding/'
|
||||
icon: >
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="16"
|
||||
height="16" fill="none" stroke="currentColor" stroke-linecap="round"
|
||||
stroke-linejoin="round" stroke-width="2">
|
||||
<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>
|
||||
<line x1="17.5" x2="17.51" y1="6.5" y2="6.5"></line>
|
||||
</svg>
|
||||
|
||||
menus:
|
||||
main:
|
||||
- identifier: Catalog
|
||||
name: Catalog
|
||||
url: /catalog/
|
||||
weight: 1
|
||||
- identifier: Art
|
||||
name: Art
|
||||
url: /art/
|
||||
weight: 2
|
||||
- identifier: FAQ
|
||||
name: FAQ
|
||||
url: /faq/
|
||||
weight: 3
|
||||
- identifier: About
|
||||
name: About
|
||||
url: /about/
|
||||
weight: 4
|
||||
- identifier: Contact
|
||||
name: Contact
|
||||
url: /contact/
|
||||
weight: 5
|
||||
|
||||
taxonomies:
|
||||
tag: tags
|
|
@ -6,11 +6,9 @@ galleryColumns: "2"
|
|||
gallery:
|
||||
- image: "/img/wedding.webp"
|
||||
title: "Family Owned"
|
||||
aspectRatio: "1/1"
|
||||
description: "Ian & Caitlin got married and bought a house right here in Atlanta! The idea for their business began when Ian constructed a stunning arbor for their wedding. After working closely with an exceptional wedding florist, the couple expanded their collaborations and began renting out their commissioned designs. Through this process, they formed strong relationships and founded a successful and beautiful company. "
|
||||
- image: "/img/ian_profile.webp"
|
||||
title: "Metal Art Specialist"
|
||||
aspectRatio: "1/1"
|
||||
description: "Ian graduated from Lively Tech's Advanced Welding Program with a multitude of certifications. Then, he got accepted into Atlanta's UA Local Union 72 as a pipe welder. While pursuing a career as a high strength pressurized pipeline welder, Ian discovered a newfound passion for metal art. Ian's and Caitlin's impressive large-scale metal art installations were featured multiple times at Okeechobee Festival and Hulaween, fueling their passion for art and inspiring them to incorporate it into various aspects of their life."
|
||||
---
|
||||
|
||||
|
|
|
@ -1,31 +1,4 @@
|
|||
---
|
||||
date: '2024-05-22T12:47:43-04:00'
|
||||
title: 'FAQ'
|
||||
questions:
|
||||
- question: "What is the turn-around time?"
|
||||
answer: "Our consultation and estimate process typically takes 1-2 business days. For most projects, we estimate a one month turnaround time. However, we understand that emergencies may arise and we can accommodate last-minute requests for an additional fee. Please note that projects requested within a month of the due date may be subject to a 25-50% upcharge."
|
||||
|
||||
- question: "Is Gallo Welding licensed and insured?"
|
||||
answer: "Gallo Welding has been licensed and insured since 2020. We understand the importance of ensuring our clients' peace of mind, and we take our responsibility as a licensed and insured business seriously."
|
||||
|
||||
- question: "Is Ian Gallo a certified Welder?"
|
||||
answer: "Ian Gallo is a skilled welder with multiple nationally-recognized AWS certifications earned from Lively Tech's Advanced Welding Program. He is also Atlanta UA Local Union 72 certified and has over 10 years of experience in welding structural steel buildings, farm equipment, large trailers, and commercial and residential handrails. You can trust him to provide high-quality, heavy-duty welding services with guaranteed satisfaction."
|
||||
|
||||
- question: "How's your pricing?"
|
||||
answer: "To determine the project costs, we start by calculating the material costs based on the project dimensions. Next, we contact multiple Atlanta based metal suppliers to obtain the best prices. Labor hours required for the build are also factored into the final cost. Additional costs such as painting, installation, and breakdown are available upon request. Rental pricing is calculated as a percentage of the total project cost. A 3% processing fee will be included on the invoice. Please note that projects requested within one month of the due date are subject to a 25-50% upcharge."
|
||||
|
||||
- question: "Can you do install & breakdown?"
|
||||
answer: "Absolutely! We typically estimate installation and breakdown costs to be around 25% of the total project cost. However, please note that events outside the Atlanta Metro area may be subject to additional travel fees."
|
||||
|
||||
- question: "What is the difference between paint & powder coat"
|
||||
answer: "When it comes to finishing metal sculptures, the choice between paint and powder coating depends on the product and the desired end result. Powder coating offers a more durable, smooth, and protective finish, making it the better option if you need a longer-lasting coating for your metal structure. However, if your metal sculpture will be covered with floral arrangements or is not intended to be the focal point of the display, paint may be a suitable alternative."
|
||||
learnMore: "https://raypaulcoating.com/services/#powder-coating"
|
||||
|
||||
- question: "Can I see the powder coat color options?"
|
||||
answer: "Certainly! You can view our full color selection by clicking the link below."
|
||||
learnMore: "https://tcipowder.com/resources/color-selector/"
|
||||
|
||||
- question: "Do you build with wood? "
|
||||
answer: "Although our specialty is working with steel, we do occasionally work with wood as well. In fact, we have a family friend who is an expert woodworker, so we can definitely help you with your woodworking needs if required."
|
||||
|
||||
title: 'Contact Us!'
|
||||
---
|
|
@ -17,12 +17,12 @@
|
|||
{{ end }}
|
||||
</div> */}}
|
||||
</div>
|
||||
<div class="h-px bg-slate-700 w-9/12"></div>
|
||||
<div class="h-px bg-gray-700 w-9/12"></div>
|
||||
<div class="grid grid-cols-2 justify-between w-9/12">
|
||||
<p class="text-xs text-slate-400">
|
||||
<p class="text-xs text-gray-400">
|
||||
© {{ now.Format "2006" }} {{ .Site.Params.copyName | markdownify }}
|
||||
</p>
|
||||
<p class="text-xs text-right text-slate-400">
|
||||
<p class="text-xs text-right text-gray-400">
|
||||
Built using
|
||||
<a
|
||||
class="hover:decoration-2 underline"
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<img
|
||||
src="{{ .image }}"
|
||||
style="object-fit: cover"
|
||||
class="aspect-[{{ .aspectRatio }}] w-full rounded-lg"
|
||||
class="aspect-[1/1] w-full rounded-lg"
|
||||
/>
|
||||
<div class="gap-4 flex flex-col">
|
||||
<p class="text-xl font-bold pt-2">{{ .title }}</p>
|
||||
|
|
|
@ -7,10 +7,10 @@
|
|||
"
|
||||
class="flex justify-start min-h-96"
|
||||
>
|
||||
<div class="flex flex-col ml-16 mb-8 place-self-center text-white max-w-4xl gap-4">
|
||||
<h1 class="text-3xl font-bold">
|
||||
{{ .Site.Params.headerTitle }}
|
||||
</h1>
|
||||
<div
|
||||
class="flex flex-col ml-16 mb-8 place-self-center text-white max-w-4xl gap-4"
|
||||
>
|
||||
<h1 class="text-3xl font-bold">{{ .Site.Params.headerTitle }}</h1>
|
||||
<p class="text-md">{{ .Site.Params.headerDesc }}</p>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
<div class="p-4 flex flex-row w-full justify-between bg-black">
|
||||
<a href="/"><img class="w-44 h-auto" src="{{ .Site.Params.logo }}" /></a>
|
||||
<nav class="place-self-center h-8 flex justify-end gap-4 text-white pr-6">
|
||||
<nav class="place-self-center h-8 flex justify-end gap-2 text-white pr-6">
|
||||
{{ range .Site.Menus.main }}
|
||||
<a
|
||||
class="underline underline-offset-0 decoration-2 decoration-transparent hover:decoration-white hover:underline-offset-2 ease-in-out duration-300 place-self-center"
|
||||
class="ml-2 underline underline-offset-0 decoration-2 decoration-transparent hover:decoration-white hover:underline-offset-2 ease-in-out duration-300 place-self-center"
|
||||
href="{{ .URL }}"
|
||||
>
|
||||
{{ $text := print .Name | safeHTML }} {{ $text }}
|
||||
|
|
2
themes/gallo/static/css/tailwind.min.css
vendored
2
themes/gallo/static/css/tailwind.min.css
vendored
File diff suppressed because one or more lines are too long
Loading…
Add table
Reference in a new issue