Skip to content

Instantly share code, notes, and snippets.

@nobodyiscertain
Last active August 29, 2015 14:05
Show Gist options
  • Save nobodyiscertain/ab97cb3f59cdecf834ca to your computer and use it in GitHub Desktop.
Save nobodyiscertain/ab97cb3f59cdecf834ca to your computer and use it in GitHub Desktop.
LocomotiveCMS Content Type Example
# Public name of this content type
name: Properties
# TODO: explain
slug: properties
# Explanation for the backoffice
description: A property to list
# Default field (e.g title)
label_field_name: title
# Order of entries
order_by: manually # default: manually, also available: created_at or any field slug
# Order direction
# order_direction: asc # default: asc, also available: desc
# Display entries grouped by <field> in the backoffice
# group_by: <your field>
# Activate public 'create' API (e.g for a contact form)
# public_submission_enabled: false
# Emails to be notified on new entries using the public API
# public_submission_accounts: ['[email protected]']
# Describe each field. The name shoud always be an underscored string
fields:
- title: # Name of the field
label: Title
type: string
required: true
localized: false
- description: # Name of the field
label: Description
type: text
required: true
localized: false
- teaser: # Name of the field
label: Teaser
type: text
required: false
localized: false
- address: # Name of the field
label: Address
type: string
required: true
localized: false
text_formatting: text
- price: # Name of the field
label: Price
type: string
required: true
localized: false
- year_built: # Name of the field
label: Year built
type: string
required: true
localized: false
- square_footage: # Name of the field
label: Square footage
type: string
required: true
localized: false
- bedrooms: # Name of the field
label: Bedrooms
type: string
required: true
localized: false
- baths: # Name of the field
label: Baths
type: string
required: true
localized: false
- location: # Name of the field
label: Location
type: string
required: false
localized: false
- main_photo: # Name of the field
label: Main photo
type: file
required: true
localized: false
- photos: # Name of the field
label: Photos
type: has_many
required: false
localized: false
class_name: property_photos
inverse_of: property
ui_enabled: true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment