Skip to content

Instantly share code, notes, and snippets.

@lamenath
Created March 15, 2016 09:36
Show Gist options
  • Save lamenath/d848f871c3b0dd39c1bc to your computer and use it in GitHub Desktop.
Save lamenath/d848f871c3b0dd39c1bc to your computer and use it in GitHub Desktop.
prismic.io Custom Type for a blog post with snippets using "Slices"
{
"Main" : {
"title" : {
"type" : "StructuredText",
"config" : {
"single" : "heading1",
"placeholder" : "Title"
}
},
"description" : {
"type" : "StructuredText",
"config" : {
"single" : "paragraph,hyperlink",
"placeholder" : "Description"
}
},
"illustration" : {
"type" : "Image"
},
"body" : {
"type" : "Slices",
"config" : {
"choices" : {
"snippet" : {
"type" : "StructuredText",
"fieldset" : "code",
"config" : {
"single" : "preformatted",
"placeholder" : "paste snippet"
}
},
"text" : {
"fieldset" : "text",
"type" : "Group",
"config" : {
"repeat" : false,
"fields" : {
"content" : {
"type" : "StructuredText",
"fieldset" : "text",
"config" : {
"multi" : "heading2,heading3,paragraph,strong,em,hyperlink",
"placeholder" : "tell your story..."
}
}
}
}
}
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment