Created
March 15, 2016 09:36
-
-
Save lamenath/d848f871c3b0dd39c1bc to your computer and use it in GitHub Desktop.
prismic.io Custom Type for a blog post with snippets using "Slices"
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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