Farp 25th Sep 2021
Farp!
Displays markdown as a section on the index page.
structure
├── twiglots
│ ├── section.md
markdown
---
title: 'Title'
description: 'Description'
image: 'https://example.com/image.jpg'
active: true
type: section
order: 1
---
Markdown
Displays markdown.
structure
├── twiglots
│ ├── category
│ │ ├── twiglot.md
markdown
---
title: 'Title'
description: 'Description'
image: 'https://example.com/image.jpg'
created_at: '09/22/2021'
type: 'text'
---
Markdown
Displays price and markdown.
structure
├── twiglots
│ ├── category
│ │ ├── twiglot.md
markdown
price
: stringcurrency
: string---
title: 'Title'
description: 'Description'
image: 'https://example.com/image.jpg'
created_at: '09/22/2021'
type: 'product'
price: '300'
currency: '£'
---
Markdown
Displays embedded media and markdown.
structure
├── twiglots
│ ├── category
│ │ ├── twiglot.md
markdown
embed_url
: embed url (not iframe)---
title: 'Title'
description: 'Description'
image: 'https://img.youtube.com/vi/GbfeH6Q8PzY/maxresdefault.jpg'
created_at: '09/22/2021'
type: 'video'
embed_url: 'https://www.youtube.com/embed/GbfeH6Q8PzY'
---
Markdown
Displays image gallery and markdown.
structure
├── twiglots
│ ├── category
│ │ ├── twiglot.md
│ ├── kittens
│ │ ├── image-1.jpg
│ │ ├── image-2.jpg
markdown
image_folder
: name of folder containing images within twiglot folderimage_size
: small
/large
---
title: 'Title'
description: 'Description'
image: 'https://example.com/image.jpg'
created_at: '09/22/2021'
type: 'image'
image_folder: 'kittens'
image_size: 'large'
---
Markdown
Farp 25th Sep 2021
Farp!