gallowelds.com/themes/gallo/static/admin/config.yml

257 lines
8 KiB
YAML
Raw Normal View History

2024-06-10 21:41:29 -04:00
---
2024-06-06 16:17:01 -04:00
backend:
name: gitea
repo: mycosystems/gallowelds.com
2024-08-12 15:15:18 -04:00
branch: main
2024-06-06 16:17:01 -04:00
app_id: 8cf43676-cdba-4112-a981-9c1117b3d096
api_root: https://git.myco.systems/api/v1
base_url: https://git.myco.systems
disable_local_backup: true
2024-07-15 13:36:48 -04:00
2024-08-13 12:09:21 -04:00
public_folder: "/media"
media_folder: "themes/gallo/static/media"
2024-08-13 11:08:56 -04:00
2024-08-07 18:12:43 -04:00
site_url: https://www.gallowelding.com
2024-08-16 14:05:53 -04:00
logo_url: https://www.gallowelding.com/media/gallo_welding.svg
2024-06-10 21:41:29 -04:00
locale: en
2024-06-06 16:17:01 -04:00
show_preview_links: false
search: false
2024-08-12 15:04:55 -04:00
preview: false
2024-06-06 16:17:01 -04:00
collections:
2024-06-11 01:08:34 -04:00
- name: pages
label: Pages
2024-08-13 11:00:36 -04:00
editor:
preview: false
2024-06-11 01:08:34 -04:00
files:
2024-08-20 14:28:24 -04:00
- name: home
label: Home
file: content/_index.md
fields:
2024-08-20 14:35:10 -04:00
- label: "Logo"
name: "logo"
widget: "image"
required: true
default: "/media/gallo_welding_inverted.svg"
- label: "Logo Alt Text"
name: "logoAlt"
widget: "string"
required: true
default: "Gallo Welding & Fabrication"
- label: "Copy Name"
name: "copyName"
widget: "string"
required: true
default: "Gallo Welding"
- label: "Header Title"
name: "headerTitle"
widget: "string"
required: true
default: "Gallo Welding & Fabrication"
- label: "Header Image"
name: "headerImg"
widget: "image"
required: true
default: "/media/wide.webp"
- label: "Header Description"
name: "headerDesc"
widget: "text"
required: true
- label: "Catalog Buttons"
name: "catalogButtons"
widget: "list"
fields:
- label: "Category Name"
name: "categoryName"
widget: "string"
required: true
- label: "Image"
name: "img"
widget: "image"
required: true
- label: "Alt Text"
name: "alt"
widget: "string"
- label: "Style"
name: "style"
widget: "string"
- label: "Social Links"
name: "social"
widget: "list"
fields:
- label: "URL"
name: "url"
widget: "string"
required: true
- label: "Label"
name: "label"
widget: "string"
required: true
- label: "Icon"
name: "icon"
widget: "code"
language: "html"
required: true
2024-08-20 14:28:24 -04:00
- name: artist
label: The Artist
file: content/artist/index.md
fields:
- { label: "Title", name: "title", widget: "string" }
- { label: "Date", name: "date", widget: "datetime" }
2024-08-20 14:29:36 -04:00
- label: Body
name: body
widget: markdown
2024-08-20 14:28:24 -04:00
- {
label: "Buttons",
name: "buttons",
widget: "list",
fields:
[
{ label: "Text", name: "text", widget: "string" },
{ label: "URL", name: "url", widget: "string" },
{ label: "Icon", name: "icon", widget: "string" },
],
}
- {
2024-08-20 14:31:03 -04:00
label: "Art Listing",
2024-08-20 14:32:05 -04:00
name: "art",
2024-08-20 14:28:24 -04:00
widget: "list",
fields:
[
{ label: "Main Image", name: "main", widget: "image" },
{ label: "Title", name: "title", widget: "string" },
{ label: "Status", name: "status", widget: "string" },
{ label: "Description", name: "description", widget: "text" },
{ label: "Year", name: "year", widget: "number" },
{
label: "Gallery",
name: "gallery",
widget: "list",
fields:
[{ label: "Image", name: "image", widget: "image" }],
},
],
}
2024-08-12 15:04:55 -04:00
- name: bio
label: Artist Bio
file: content/bio/index.md
fields:
- label: Title
name: title
widget: string
- label: Date
name: date
widget: datetime
- label: "Buttons"
name: "buttons"
widget: "list"
fields:
- { label: "Text", name: "text", widget: "string" }
- { label: "URL", name: "url", widget: "string" }
- label: Body
name: body
widget: markdown
2024-06-11 01:08:34 -04:00
- name: about
label: About Us
file: content/about/index.md
2024-06-10 22:04:09 -04:00
fields:
- label: Title
name: title
widget: string
2024-06-11 01:08:34 -04:00
- label: Date Last Edited
name: date
widget: datetime
- label: Body
name: body
widget: markdown
- label: Image
name: gallery
widget: list
fields:
- label: Path to image
name: image
2024-06-11 01:11:52 -04:00
widget: image
2024-06-11 01:08:34 -04:00
- label: Title
name: title
widget: string
- label: Description
name: description
2024-06-11 01:11:52 -04:00
widget: markdown
2024-06-11 01:08:34 -04:00
- name: faq
label: FAQ
2024-06-11 01:10:10 -04:00
file: content/faq/index.md
2024-06-11 01:08:34 -04:00
fields:
2024-07-15 13:44:14 -04:00
- label: Title
name: title
widget: string
- label: Date Last Edited
2024-06-11 01:08:34 -04:00
name: date
widget: datetime
2024-07-15 13:44:14 -04:00
- label: Group
2024-07-15 13:36:48 -04:00
name: faq
2024-06-11 01:08:34 -04:00
widget: list
2024-07-15 13:50:26 -04:00
collapsed: true
2024-06-11 01:08:34 -04:00
fields:
2024-07-15 13:44:14 -04:00
- label: Title
2024-07-15 13:36:48 -04:00
name: group
widget: string
2024-07-15 13:44:14 -04:00
- label: QA
2024-07-15 13:36:48 -04:00
name: questions
widget: list
fields:
2024-08-13 11:08:56 -04:00
- { label: Question, name: question, widget: string }
- { label: Answer, name: answer, widget: markdown }
2024-08-16 14:05:53 -04:00
- name: thankyou
label: Contact "Thank You" Page
file: content/thankyou/index.md
fields:
- label: Title
name: title
widget: string
- label: Body
name: body
widget: markdown
- name: catalog
label: Catalog
file: content/catalog/index.md
fields:
2024-08-12 15:07:10 -04:00
- { label: "Date", name: "date", widget: "datetime" }
- { label: "Title", name: "title", widget: "string" }
- { label: "Subtitle", name: "subTitle", widget: "string" }
- label: "Buttons"
name: "buttons"
widget: "list"
2024-07-15 13:50:26 -04:00
fields:
2024-08-12 15:07:10 -04:00
- { label: "Text", name: "text", widget: "string" }
- { label: "URL", name: "url", widget: "string" }
- label: "Catalog Item"
name: "catalog"
widget: "list"
2024-07-15 13:44:14 -04:00
collapsed: true
2024-06-11 14:46:17 -04:00
fields:
2024-08-12 15:07:10 -04:00
- { label: "Item", name: "item", widget: "string" }
- { label: "Quantity", name: "quant", widget: "number" }
- { label: "Dimensions", name: "dimensions", widget: "string" }
2024-08-13 11:06:04 -04:00
- { label: "Base Cost", name: "baseCost", widget: "string" }
2024-08-13 11:08:56 -04:00
- {
label: "Delivery/Pickup Cost",
name: "deliveryPickup",
widget: "string",
}
- {
label: "Install/Breakdown Cost",
name: "installBreakdown",
widget: "string",
}
- {
label: "Purchase Cost",
name: "purchaseCost",
widget: "string",
}
2024-08-12 15:07:10 -04:00
- { label: "Category", name: "cat", widget: "string" }
- { label: "Thumbnail", name: "thumbnail", widget: "image" }
- label: "Gallery"
name: "gallery"
widget: "list"
2024-07-15 13:44:14 -04:00
fields:
2024-08-13 11:17:54 -04:00
- { label: "Image", name: "image", widget: "image" }