fix
This commit is contained in:
@@ -50,7 +50,8 @@ testimonial:
|
|||||||
# testimonial item loop
|
# testimonial item loop
|
||||||
- name: "Alice kelly"
|
- name: "Alice kelly"
|
||||||
designation: "Happy client"
|
designation: "Happy client"
|
||||||
content : Lorem ipsum dolor amet constur adipi sicing elit sed eiusmtempor incid dolore magna aliqu.
|
content: >
|
||||||
|
Lorem ipsum dolor amet constur adipi sicing elit sed eiusmtempor incid dolore magna aliqu.
|
||||||
enim minim veniam quis nostrud exercittion. ullamco laboris nisi ut aliquip excepteur sint occaecat cuida
|
enim minim veniam quis nostrud exercittion. ullamco laboris nisi ut aliquip excepteur sint occaecat cuida
|
||||||
tat nonproident sunt in culpa qui officia deserunt mollit anim id est laborum. sed ut perspiciatis.
|
tat nonproident sunt in culpa qui officia deserunt mollit anim id est laborum. sed ut perspiciatis.
|
||||||
|
|
||||||
|
|||||||
@@ -94,3 +94,87 @@ collections:
|
|||||||
fields:
|
fields:
|
||||||
- { label: "Titel", name: "title", widget: "string" }
|
- { label: "Titel", name: "title", widget: "string" }
|
||||||
- { label: "Body", name: "body", widget: "markdown" }
|
- { label: "Body", name: "body", widget: "markdown" }
|
||||||
|
|
||||||
|
collections:
|
||||||
|
- name: "homepage"
|
||||||
|
label: "Homepage"
|
||||||
|
files:
|
||||||
|
- label: "Homepage"
|
||||||
|
name: "homepage"
|
||||||
|
file: "content/_index.md"
|
||||||
|
format: "yaml-frontmatter"
|
||||||
|
fields:
|
||||||
|
- label: "Banner"
|
||||||
|
name: "banner"
|
||||||
|
widget: "object"
|
||||||
|
fields:
|
||||||
|
- { label: "Actief", name: "enable", widget: "boolean", default: true }
|
||||||
|
- { label: "Achtergrondafbeelding", name: "bg_image", widget: "image", required: false }
|
||||||
|
- { label: "Titel", name: "title", widget: "string" }
|
||||||
|
- { label: "Watermark", name: "watermark", widget: "string", required: false }
|
||||||
|
- { label: "Tekst", name: "content", widget: "markdown" }
|
||||||
|
- { label: "Illustratie", name: "image", widget: "image", required: false }
|
||||||
|
- label: "Button"
|
||||||
|
name: "button"
|
||||||
|
widget: "object"
|
||||||
|
fields:
|
||||||
|
- { label: "Button actief", name: "enable", widget: "boolean", default: true }
|
||||||
|
- { label: "Label", name: "label", widget: "string" }
|
||||||
|
- { label: "Link", name: "link", widget: "string" }
|
||||||
|
|
||||||
|
- label: "Service sectie"
|
||||||
|
name: "service"
|
||||||
|
widget: "object"
|
||||||
|
fields:
|
||||||
|
- { label: "Actief", name: "enable", widget: "boolean", default: true }
|
||||||
|
- { label: "Sectienaam (Hugo page)", name: "section", widget: "string" }
|
||||||
|
|
||||||
|
- label: "Over ons blokken"
|
||||||
|
name: "about"
|
||||||
|
widget: "object"
|
||||||
|
fields:
|
||||||
|
- { label: "Actief", name: "enable", widget: "boolean", default: true }
|
||||||
|
- label: "Blokken"
|
||||||
|
name: "about_item"
|
||||||
|
widget: "list"
|
||||||
|
fields:
|
||||||
|
- { label: "Afbeelding", name: "image", widget: "image", required: false }
|
||||||
|
- { label: "Subtitel", name: "subtitle", widget: "string", required: false }
|
||||||
|
- { label: "Titel", name: "title", widget: "string" }
|
||||||
|
- { label: "Tekst", name: "content", widget: "markdown" }
|
||||||
|
- label: "Button"
|
||||||
|
name: "button"
|
||||||
|
widget: "object"
|
||||||
|
fields:
|
||||||
|
- { label: "Button actief", name: "enable", widget: "boolean", default: true }
|
||||||
|
- { label: "Label", name: "label", widget: "string", required: false }
|
||||||
|
- { label: "Link", name: "link", widget: "string", required: false }
|
||||||
|
|
||||||
|
- label: "Download / Call to action"
|
||||||
|
name: "download"
|
||||||
|
widget: "object"
|
||||||
|
fields:
|
||||||
|
- { label: "Actief", name: "enable", widget: "boolean", default: true }
|
||||||
|
- { label: "Titel", name: "title", widget: "string" }
|
||||||
|
- { label: "Afbeelding", name: "image", widget: "image", required: false }
|
||||||
|
- { label: "Tekst", name: "content", widget: "markdown" }
|
||||||
|
- label: "Link 1"
|
||||||
|
name: "playstore"
|
||||||
|
widget: "object"
|
||||||
|
fields:
|
||||||
|
- { label: "Label", name: "label", widget: "string" }
|
||||||
|
- { label: "Link", name: "link", widget: "string" }
|
||||||
|
- label: "Link 2"
|
||||||
|
name: "appstore"
|
||||||
|
widget: "object"
|
||||||
|
fields:
|
||||||
|
- { label: "Label", name: "label", widget: "string" }
|
||||||
|
- { label: "Link", name: "link", widget: "string" }
|
||||||
|
|
||||||
|
- label: "Pricing sectie"
|
||||||
|
name: "pricing"
|
||||||
|
widget: "object"
|
||||||
|
fields:
|
||||||
|
- { label: "Actief", name: "enable", widget: "boolean", default: false }
|
||||||
|
- { label: "Sectienaam (Hugo page)", name: "section", widget: "string", required: false }
|
||||||
|
- { label: "Aantal items tonen", name: "show_items", widget: "number", required: false }
|
||||||
|
|||||||
Reference in New Issue
Block a user