'default value' is the default text, that will appear if no content is found in database.
'name' is the name of content in the content table.
'options' - array of options (listed below).
Example:, (*14)
{{ 'Welcome to the Arcana Content Bundle!' | content('default_page_title', { editable_separately: true, type: 'plaintext' }) }}
You can also use large text blocks (also with html tags) without using a default value, for example:, (*15)
{% content of "facts_text" %}
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc rhoncus massa et dui tempor facilisis. In a luctus erat. Morbi eget tellus fermentum, pretium arcu sed, congue arcu.
{% endcontent %}
Separately editable texts, (*16)
{{ 'You can edit me separately' | content('separate_title_tag', { editable_separately: true, type: 'plaintext' }) }}
Separately editable texts are texts, that are not visible on the page, for example "title" tag. You can edit them by opening "Separately editable contents" popup., (*17)
Options available:
'editable_separately' - if 'true', will be editable in separately editable contents popup
'type': 'plaintext'/'block'/'inline'/'anchor' - NEED DESCRIPTION, (*18)