Block Types
Content Types
By default, OnlyHtml assumes that all template tags are text, and will generate text field inputs in the dashboard. You can easily change the type of dashboard input by specifying one of the types below.
Additionally, template tags accept any number of parameters, which can tell OnlyHtml how to render the content, or how to further configure the dashboard input. Each content type below has a corresponding table which describes its parameters.
All types have these common parameters
Parameter Name | Default Value | Possible Values | Description |
default | any text | The default value of the field. In rapid mode will render this value as the fields value |
Text
Just plain text :)
Parameter Name | Default Value | Possible Values | Description |
words | 8 | any number | In rapid mode, will generate random text with the given length |
sentences | any number | In rapid mode, will generate random text with the given length |
HTML
Parameter Name | Default Value | Possible Values | Description |
class | any text | Adds a | |
paragraphs | any number | In rapid mode will generate random text with the given length |
Image
Parameter Name | Default Value | Possible Values | Description |
tag | true | true | false | Render an |
class | any text | Adds | |
style | any text | Adds | |
width | any text | Adds | |
height | any text | Adds | |
alt TODO | any text | Adds | |
lorem_query | any text | In rapid mode, a query string to fetch a specifc kind of image. For example "dogs" |
Link
link is an alias to a text field together with a URL field. It will render a an <a>
tag
Parameter Name | Default Value | Possible Values | Description |
tag | true | true | false | Render an |
onlytext | false | true | false | Render only the textual value of the link |
words | 2 | any number | In rapid mode will generate random link text with the given length |
class | any text | Add |
Icon
icon renders an <i>
tag with automatic font-awesome css classes
Parameter Name | Default Value | Possible Values | Description |
class | any text | Add |
Video
Video supports videos stored on Sanity.io using mux.com as a backend.
tag | true | true | false | Render an |
poster | image | image | gif | What kind of thumbnail should be displayed before video is played |
controls | any text | Adds | |
loop | any text | Adds | |
preload | any text | Adds | |
playsinline | any text | Adds | |
controlsList | any text | Adds |
Date
Parameter Name | Default Value | Possible Values | Description |
format | %B %e, %Y | anything supported by strftime | Formats the date |
timezone | +0000 | Sets a specific timezone to input field |
Code Snippet
Raw code snippet to inserted into the page as is. In CMS will be presented in code aware editor.
Parameter Name | Default Value | Possible Values | Description |
language | any known language name | will control syntax highlighting in CMS |
Choice
Presents the user with a choice, from zero to multiple options. This would typically be used if you were asking for Yes/No answer, to choose one from many options, or in some case multiple-choice.
For example, this code will render "Love It" if the input field is selected and "Hate It" if it is u
Another example where there is only one option. In case the input checkbox is not-selected no value will be rendered.
Parameter Name | Default Value | Possible Values | Description |
options | comma delimited text values |
Reference
This feature is unstable
What if we have a a blog where each post has one author. We could set up a field of a post to be the author name and author picture, problem is it feels we are repeating ourselves. Instead we can use reference fields.
For example, lets look at this blog post
Parameter Name | Default Value | Possible Values | Description |
---|---|---|---|
target | any collection name | the collection we want to reference | |
multiple | false | true | false | allow selecting more than one item |
Last updated