Usage

Landing engine can be used in 2 ways:

  • As an independent page.

    Just write blocks you need and the page will automatically be processed with landing engine.

  • As a part of any page.

    Landing blocks can be inserted into any page to the beginning and/or ending of the page.
    Add blocks as usual to any place into "Text" field and wrap all them into special placeholders:

    for the beginning:

    {landing-header}
    {block
        ...
    }
    {block
        ...
    }
    ...
    {/landing-header}

    for the ending:

    {landing-footer}
    {block
        ...
    }
    {block
        ...
    }
    ...
    {/landing-footer}

Syntax

There are 2 types of blocks available:

Single block
Such block begins with {block and ends with }. It can have set of parameters with values. Each parameter of each block is described below on the page.

{block
    param1="value1"
    param2="value2"
    ...
}

Quotes syntax
Every parameter must be set in the format param="value", that is a parameter name followed by =, followed by a value wrapped into double quotes ".
Sometimes there is a need to use quote symbols " inside the value. In this case, it must be escaped by putting back slash symbol before it like this: \". Example:

{block
    param1="My text with \" symbol."
    param2="<div class=\"myclass\">bla bla</div>"
}

Clue: HTML can be written using single quote symbols ' as well. Then no escaping is needed. Example:

{block
    param1="<div class='myclass'>bla bla</div>"
}

Important: When using {url page="..."} structure in the value, quote escaping should not be used! Example:

{block
    param1="Here is <a href='{url page="page-reference-id"}'>my URL</a>."
}

Block with inner content
Such block begins with {beginblock ...} and ends with {endblock}. It can have inside other blocks that it supports or can have a raw text, depending on type of block. You can see real examples below on the page.

{beginblock param1="value1" param2="value2" ...}
    {block
        param1="value3"
        param2="value4"
        ...
    }
    {block
        param1="value5"
        param2="value6"
        ...
    }
    ...
{endblock}

A/B testing

  • The A/B testing can be enabled on a home page of the website. When the visitor opens website for the 1st time then he is assigned with one of available versions on that page randomly. After a version assignment his version is saved for him for 7 days and during that period only blocks of appropriate version are shown for him.
  • To show block on a certain version set abType parameter with appropriate version value of format "Test_id:Letter" (e.g. "a1b2c3:A", where "a1b2c3" is test ID and "A" is test value). If the block does not have "abType" property it will be shown for everybody. The same version can also be assigned for multiple blocks. Example:
    {block layout="..."
        abType="test1:A"
        ...
    }
    {block layout="..."
        abType="test1:B"
        ...
    }
    {block layout="..."
        abType="test1:A"
        ...
    }
    {block layout="..."
        abType="test1:C"
        ...
    }
    {block layout="..."
        ...
    }
    Before loading such page, firstly all versions are collected. In this example there are 3 versions available: "A", "B" and "C" all of test "test1".
    The visitor is randomly assigned to one of these versions when visits website home page.
    If he is assigned to version "A" then blocks 1, 3 and 5 will be shown for him.
    If he is assigned to version "B" then blocks 2 and 5 will be shown for him.
    If he is assigned to version "C" then blocks 4 and 5 will be shown for him.
  • Use abType="-" (minus symbol) to the block which should be used for all the rest who were not assigned to any A/B testing letter.

A/B with specific limits

  • Blocks also can be limited by the following options:
    • by country — parameter abTypeCountry
      example: abTypeCountry=["US", "IT"]
    • by currency — parameter abTypeCurrency
      example: abTypeCurrency=["USD", "EUR"]
    • by language — parameter abTypeLanguage
      example: abTypeLanguage=["EN", "BR"]
  • Limited blocks will be shown only for those clients who match all specified limits in this block, then all not-limited blocks with "abType" property will be ignored for them.
    On the other hand, for those clients who do not match limits of any limited block - only not-limited blocks will be shown, and all limited blocks will be ignored for them. Example:
    {block layout="..."
        abType="test1:A"
        abTypeLanguage=["EN", "RU"]
        ...
    }
    {block layout="..."
        abType="test1:B"
        abTypeCurrency=["BRL", "EUR"]
        ...
    }
    {block layout="..."
        abType="test1:C"
        ...
    }
    {block layout="..."
        ...
    }
    Before loading such page visitor's country, currency and language will be checked.
    If the visitor opens website in English or Russian language, then he can only be assigned of version "A" and no other versions are considered for him.
    If the visitor opens website in any language but with currency "BRL" or "EUR" then he can only be assigned of version "B".
    If the visitor opens website neither in English, nor Russian language + neither with currency "BRL, nor "EUR" then he can only be assigned of version "C".
  • Blocks can also be limited by device by using abTypeDevice property.
    Example:
    • abTypeDevice="mobile"
    • abTypeDevice="tablet"
    • abTypeDevice="desktop"
    • abTypeDevice=["desktop","mobile"]
    • abTypeDevice=["tablet","desktop"]
    • abTypeDevice=["mobile","tablet"]

A/B preview block

  • To check how the home page of a specific A/B version looks like, open it with an appropriate link:
    https://site.pro/?ab=test1:A
    where put any A/B version letter in place of "A".
    To open page on another language, open Site.pro home page as usual and choose desired language. Then manually append part "?ab=A" to URL in address bar.

Multiple A/B tests

  • To set up multiple tests at once (can be on mulitple pages as well), just use different test IDs. Example:
    {block layout="..."
        abType="-"
        ...
    }
    {block layout="..."
        abType="test1:A"
        abTypeCountry="LT"
        ...
    }
    {block layout="..."
        abType="test1:B"
        abTypeCountry="LT"
        ...
    }
    {block layout="..."
        abType="test2:C"
        abTypeDevice="mobile"
        abTypeLanguage="TR"
        ...
    }
    {block layout="..."
        abType="test2:D"
        abTypeDevice="mobile"
        abTypeLanguage="TR"
        ...
    }
    {block layout="..."
        ...
    }
    Here are 2 tests "test1" and "test2".
    Test "test1" has blocks "A" and "B" set up only for LT country.
    Test "test2" has blocks "C" and "D" (letters may not necessarily be different) set up for mobile devices and for TR language.
    The block with abType="-" (common block) will be shown for all the rest who were not assigned to any of the block from any of the tests.

"Custom langs" pages

(before known as "English only")
If the page has checkbox "Custom langs" enabled, then it will not be supported in all available languages as normal page, but only in those languages which the page will have URLs to.
The "Custom langs" marked page has URL when it has "Custom URL" or "Name" set that language.
To specify custom URL for such page in other languages than English, expand custom URL dropdown next to it and specify values in needed languages each from the new line. Example:
Custom URL is: My-Page and value in dropdown is:
lt: Mano-Puslapis
ru: Моя-Страница

Specify the name, title and description in the similar way.

To specify text in other languages, use the same text field with special placeholders. Example:

My text
in English.

---LT--- Mano tekstas lietuvių kalba. ---/LT---
---RU--- Мой текст на русском. ---/RU---

Affiliates

Blocks can be shown/hidden for specific referral links.
For example, if you want to show a specific block for those who access Site.pro page with a referral link of some affiliate then use parameter affiliateSessionUserId, like this:

{block layout="..."
    affiliateSessionUserId="123"
    ...
}
{block layout="..."
    affiliateSessionUserId="other"
    ...
}

There the 1st block will be shown only for customers who open referral link of affiliate with ID 123.
Add parameter affiliateSessionUserId="other" to other block(s) if you want to hide it from customers who open referral link of affiliate with ID 123.

Show/hide blocks

Blocks can be shown/hidden by the following options:

  • by country — parameters:
    showOnlyForCountry / showForAllCountriesExcept
    example: showOnlyForCountry=["US", "IT"]
  • by currency — parameters:
    showOnlyForCurrency / showForAllCurrenciesExcept
    example: showOnlyForCurrency=["USD", "EUR"]
  • by language — parameters:
    showOnlyForLanguage / showForAllLanguagesExcept
    example: showOnlyForLanguage=["EN", "BR"]
  • by locale — parameters:
    showOnlyForLocale / showForAllLocalesExcept
    example: showOnlyForLocale=["lt-lt", "ru-ru", "es-*"]
    (where 1st part is language code and 2nd part is country code)
  • by coupon — parameter
    showOnlyForCoupon or showForAllCouponsExcept / showOnlyForNoCoupon
    example: showOnlyForCoupon=["give10", "give50"] or showOnlyForNoCoupon="true"
  • by logged/not logged users — parameter
    showOnlyForLogged or showOnlyForNotLogged
    example: showOnlyForLogged="true" or showOnlyForNotLogged="true"

Important: Do not confuse these parameters with A/B parameters "abTypeCountry", "abTypeCurrency" and "abTypeLanguage". Parameters "showOnlyFor..." have nothing common with A/B testing whereas parameters "abType..." are used only for A/B testing purpose.

Example 1:

{block layout="..."
    showOnlyForCountry=["US", "IT"]
    ...
}
{block layout="..."
    showOnlyForLanguage=["EN", "RU"]
    ...
}
{block layout="..."
    ...
}

If the visitor opens website from United States or Italy then the block 1 will be shown for him. Coming from other countries the block will not be shown.
If the visitor opens website in English or Russian language then the block 2 will be shown for him. Opening website in other languages the block will not be shown.

Example 2:

{block layout="..."
    showOnlyForLanguage=["EN"]
    ...
}
{block layout="..."
    showForAllLanguagesExcept=["EN"]
    ...
}
{block layout="..."
    ...
}

If the visitor opens website in English, then he will see the 1st block. On all other languages the visitor will see the 2nd block.

Example 3:

{block layout="..."
    showOnlyForLocale=["ru-ru"]
    ...
}
{block layout="..."
    showOnlyForLocale=["lt-lt"]
    ...
}
{block layout="..."
    showForAllLocalesExcept=["ru-ru", "lt-lt", "*-es", "*-br"]
    ...
}
{block layout="..."
    showOnlyForLocale=["*-es", "*-br"]
    ...
}

1st block will be shown only in Russian language for Russia.
2nd block will be shown only in Lithuanian language for Lithuania.
3rd block will be shown for all except Russia in Russian language, Lithuania in Lithuanian language, Spain and Brazil (any language).
4th block will be shown for all in Spain and Brazil (all languages).

* These 4 blocks cover all 100% cases.

Block headings

Many blocks support parameter "title". When using it in block it will generate heading in that block with one of tags <h1>, <h2>, <h3>, <h4>, <h5> or <h6>.
By default the tag <h2> is used for all blocks supporting "title" parameter except 1st block on page — it uses tag <h1>.

Almost each block supporting parameter "title" also support parameters "titletag" and "titleclass". By default some blocks use their own values of these parameters. If you specify values for these parameters in the text, then default values will be overwritten with your values.

For example, block slider supports "title" parameter, and by default it uses <h2> for "titletag" and <h4> for "titleclass". But if you specify your own values for these parameters, then they will be used instead of default values.

Tags are important for SEO of landing pages. It is recommended to keep only one <h1> tag on the whole page. If you need more <h1>-styled titles on the page, then you should better use combination of titletag="h2" and titleclass="h1".

Translations

  • In order to use translation variables, add them within "{{...}}" brackets, like this: {{Translation variable}}
  • If translation variable contains dynamic variables inside ("%s" symbols), they must be replaced using "|" symbol, like this: {{Translation %s variable %s|first replacement|second replacement}}. As a result, the translated text will be: Translation first replacement variable second replacement
  • Replacement can also be another variable: {{Translation %s variable|{{another variable}}}}
  • There can be cases when you need to use translation which is not translated to all languages at that time. Then you can add another similar translation as a fallback to the first one after symbol "??", like this: {{First variable ?? Second variable}}. If the first translation is not translated to the particular language, the second translation will be used. Note that even if the second translation is not translated, then it will still be used in the text.
    There can be more than one fallback translations: {{First variable ?? Second variable ?? Third translation ?? ...}}
  • Fallback translation variables can also have dynamic variables inside ("%s" symbols), like this: {{First %s variable ?? Second %s variable|replacement}}

accordion

{beginblock layout="accordion"
    title="[text]"
    height="[number]px" not recommended to use, because may cause problems with responsiveness.
    offsettop="[number]px" offset of block content from top.
    offsetbottom="[number]px" offset of block content from bottom.
    offsettopsmall="[number]px" offset of block content from top on smaller screens.
    offsetbottomsmall="[number]px" offset of block content from bottom on smaller screens.
    blockcolor="[color]" color of block.
    linecolor="[color]" color of line below the block.
    textcolor="[color]" color of text of properties "title", "subtitle", "textlist" and "numtextlist".
    background="[CSS code]" raw CSS code of background. If set and contains color definition, then "blockcolor" will be ignored.
    backgroundsize="contain|cover|auto" works only if "background" is set and contains image definition.
    titleposition="left|center|right" can be one of specified.
    texttop="[text]" inserts text at the top of any block
    textbottom="[text]" inserts text at the bottom of any block
    texttopalign="left|center|right" defaults to "center"
    textbottomalign="left|center|right" defaults to "center"
    anchor="[text]" will be used as an anchor to the block (will rewrite "title" if used in the block).
    showOnlyForCountry="LT" Can also be a list like ["LT","LV"]
    showForAllCountriesExcept="LT" Can also be a list like ["LT","LV"]
    showOnlyForCurrency="EUR" Can also be a list like ["EUR","USD"]
    showForAllCurrenciesExcept="EUR" Can also be a list like ["EUR","USD"]
    showOnlyForLanguage="LT" Can also be a list like ["LT","LV"]
    showForAllLanguagesExcept="LT" Can also be a list like ["LT","LV"]
    showOnlyForCoupon="give10" Can also be a list like ["give10","give50"]
    showForAllCouponsExcept="give10" Can also be a list like ["give10","give50"]
    showOnlyForNoCoupon="true"
    showOnlyForLogged="true"
    showOnlyForNotLogged="true"
}
    List of blocks of type "accordion_item". Click "preview" to see example.
    {block layout="accordion_item"
        title="[text]"
        pretitle="[text]"
        content="#mail_id:[mail ID]"
    }
    {beginblock layout="accordion_item" title="[text]" pretitle="[text]"}
        there can be any text/HTML/landing blocks. Click "preview" to see example.
    {endblock}
{endblock}

checkbox

{beginblock layout="checkbox"
    height="[number]px" not recommended to use, because may cause problems with responsiveness.
    offsettop="[number]px" offset of block content from top.
    offsetbottom="[number]px" offset of block content from bottom.
    offsettopsmall="[number]px" offset of block content from top on smaller screens.
    offsetbottomsmall="[number]px" offset of block content from bottom on smaller screens.
    blockcolor="[color]" color of block.
    linecolor="[color]" color of line below the block.
    textcolor="[color]" color of text of properties "title", "subtitle", "textlist" and "numtextlist".
    background="[CSS code]" raw CSS code of background. If set and contains color definition, then "blockcolor" will be ignored.
    backgroundsize="contain|cover|auto" works only if "background" is set and contains image definition.
    titleposition="left|center|right" can be one of specified.
    texttop="[text]" inserts text at the top of any block
    textbottom="[text]" inserts text at the bottom of any block
    texttopalign="left|center|right" defaults to "center"
    textbottomalign="left|center|right" defaults to "center"
    anchor="[text]" will be used as an anchor to the block (will rewrite "title" if used in the block).
    showOnlyForCountry="LT" Can also be a list like ["LT","LV"]
    showForAllCountriesExcept="LT" Can also be a list like ["LT","LV"]
    showOnlyForCurrency="EUR" Can also be a list like ["EUR","USD"]
    showForAllCurrenciesExcept="EUR" Can also be a list like ["EUR","USD"]
    showOnlyForLanguage="LT" Can also be a list like ["LT","LV"]
    showForAllLanguagesExcept="LT" Can also be a list like ["LT","LV"]
    showOnlyForCoupon="give10" Can also be a list like ["give10","give50"]
    showForAllCouponsExcept="give10" Can also be a list like ["give10","give50"]
    showOnlyForNoCoupon="true"
    showOnlyForLogged="true"
    showOnlyForNotLogged="true"
}
    there can be any text/HTML/landing blocks. Click "preview" to see example.
{endblock}
{beginblock layout="checkbox"}
    ...
{endblock}

citate

{block layout="citate"
    citate="[text]"
    citatesmall="[text]" citate of smaller font (is max 900px in width).
    authorname="[text]" author name (full name).
    authorimage="[image URL]" author photo URL.
    authorurl="[URL]" author URL.
    authorposition="[text]" author position.
    authorsource="[URL]" author source URL.
    sourceicon="[icon-ID]" can specify custom icon for source (if not specified, then can be automatically detected).
    sourcename="[text]" source title. If not specified, will use author name.
    companyimage="[image URL]" company image in the bottom right corner.
    companyname="[text]" alt value for company image.
    companyurl="[URL]" URL for company image.
    size="[number]" can be 1, 2 or 3 (defaults to 3).
    height="[number]px" not recommended to use, because may cause problems with responsiveness.
    offsettop="[number]px" offset of block content from top.
    offsetbottom="[number]px" offset of block content from bottom.
    offsettopsmall="[number]px" offset of block content from top on smaller screens.
    offsetbottomsmall="[number]px" offset of block content from bottom on smaller screens.
    blockcolor="[color]" color of block.
    linecolor="[color]" color of line below the block.
    textcolor="[color]" color of text of properties "title", "subtitle", "textlist" and "numtextlist".
    background="[CSS code]" raw CSS code of background. If set and contains color definition, then "blockcolor" will be ignored.
    backgroundsize="contain|cover|auto" works only if "background" is set and contains image definition.
    titleposition="left|center|right" can be one of specified.
    texttop="[text]" inserts text at the top of any block
    textbottom="[text]" inserts text at the bottom of any block
    texttopalign="left|center|right" defaults to "center"
    textbottomalign="left|center|right" defaults to "center"
    anchor="[text]" will be used as an anchor to the block (will rewrite "title" if used in the block).
    showOnlyForCountry="LT" Can also be a list like ["LT","LV"]
    showForAllCountriesExcept="LT" Can also be a list like ["LT","LV"]
    showOnlyForCurrency="EUR" Can also be a list like ["EUR","USD"]
    showForAllCurrenciesExcept="EUR" Can also be a list like ["EUR","USD"]
    showOnlyForLanguage="LT" Can also be a list like ["LT","LV"]
    showForAllLanguagesExcept="LT" Can also be a list like ["LT","LV"]
    showOnlyForCoupon="give10" Can also be a list like ["give10","give50"]
    showForAllCouponsExcept="give10" Can also be a list like ["give10","give50"]
    showOnlyForNoCoupon="true"
    showOnlyForLogged="true"
    showOnlyForNotLogged="true"
}

citate_list

{beginblock layout="citate_list"}
    title="[text]"
    titlecolor="[color]"
    titlealign="left|center|right" can be one of specified
    titletag="h1|h2|h3|h4|h5|h6|p" can be one of specified
    titleclass="h1|h2|h3|h4|h5|h6" use one tag but simulate look as another tag
    subtitle="[text]"
    subtitlecolor="[color]"
    subtitlealign="left|center|right" can be one of specified
    subtitletag="h1|h2|h3|h4|h5|h6|p" can be one of specified
    subtitleclass="h1|h2|h3|h4|h5|h6" use one tag but simulate look as another tag
    height="[number]px" not recommended to use, because may cause problems with responsiveness.
    offsettop="[number]px" offset of block content from top.
    offsetbottom="[number]px" offset of block content from bottom.
    offsettopsmall="[number]px" offset of block content from top on smaller screens.
    offsetbottomsmall="[number]px" offset of block content from bottom on smaller screens.
    blockcolor="[color]" color of block.
    linecolor="[color]" color of line below the block.
    textcolor="[color]" color of text of properties "title", "subtitle", "textlist" and "numtextlist".
    background="[CSS code]" raw CSS code of background. If set and contains color definition, then "blockcolor" will be ignored.
    backgroundsize="contain|cover|auto" works only if "background" is set and contains image definition.
    titleposition="left|center|right" can be one of specified.
    texttop="[text]" inserts text at the top of any block
    textbottom="[text]" inserts text at the bottom of any block
    texttopalign="left|center|right" defaults to "center"
    textbottomalign="left|center|right" defaults to "center"
    anchor="[text]" will be used as an anchor to the block (will rewrite "title" if used in the block).
    showOnlyForCountry="LT" Can also be a list like ["LT","LV"]
    showForAllCountriesExcept="LT" Can also be a list like ["LT","LV"]
    showOnlyForCurrency="EUR" Can also be a list like ["EUR","USD"]
    showForAllCurrenciesExcept="EUR" Can also be a list like ["EUR","USD"]
    showOnlyForLanguage="LT" Can also be a list like ["LT","LV"]
    showForAllLanguagesExcept="LT" Can also be a list like ["LT","LV"]
    showOnlyForCoupon="give10" Can also be a list like ["give10","give50"]
    showForAllCouponsExcept="give10" Can also be a list like ["give10","give50"]
    showOnlyForNoCoupon="true"
    showOnlyForLogged="true"
    showOnlyForNotLogged="true"
    {block layout="citate"
        ...
        size="1"
    }
    {block layout="citate"
        ...
        size="2"
    }
{endblock}

column

{beginblock layout="column"
    size="[number]" size can be from 1 to 12
    title="[text]"
    titlecolor="[color]"
    titlealign="left|center|right" can be one of specified
    titletag="h1|h2|h3|h4|h5|h6|p" can be one of specified
    titleclass="h1|h2|h3|h4|h5|h6" use one tag but simulate look as another tag
    subtitle="[text]"
    subtitlecolor="[color]"
    subtitlealign="left|center|right" can be one of specified
    subtitletag="h1|h2|h3|h4|h5|h6|p" can be one of specified
    subtitleclass="h1|h2|h3|h4|h5|h6" use one tag but simulate look as another tag
    height="[number]px" not recommended to use, because may cause problems with responsiveness.
    offsettop="[number]px" offset of block content from top.
    offsetbottom="[number]px" offset of block content from bottom.
    offsettopsmall="[number]px" offset of block content from top on smaller screens.
    offsetbottomsmall="[number]px" offset of block content from bottom on smaller screens.
    blockcolor="[color]" color of block.
    linecolor="[color]" color of line below the block.
    textcolor="[color]" color of text of properties "title", "subtitle", "textlist" and "numtextlist".
    background="[CSS code]" raw CSS code of background. If set and contains color definition, then "blockcolor" will be ignored.
    backgroundsize="contain|cover|auto" works only if "background" is set and contains image definition.
    titleposition="left|center|right" can be one of specified.
    texttop="[text]" inserts text at the top of any block
    textbottom="[text]" inserts text at the bottom of any block
    texttopalign="left|center|right" defaults to "center"
    textbottomalign="left|center|right" defaults to "center"
    anchor="[text]" will be used as an anchor to the block (will rewrite "title" if used in the block).
    showOnlyForCountry="LT" Can also be a list like ["LT","LV"]
    showForAllCountriesExcept="LT" Can also be a list like ["LT","LV"]
    showOnlyForCurrency="EUR" Can also be a list like ["EUR","USD"]
    showForAllCurrenciesExcept="EUR" Can also be a list like ["EUR","USD"]
    showOnlyForLanguage="LT" Can also be a list like ["LT","LV"]
    showForAllLanguagesExcept="LT" Can also be a list like ["LT","LV"]
    showOnlyForCoupon="give10" Can also be a list like ["give10","give50"]
    showForAllCouponsExcept="give10" Can also be a list like ["give10","give50"]
    showOnlyForNoCoupon="true"
    showOnlyForLogged="true"
    showOnlyForNotLogged="true"
}
    there can be any text/HTML/other landing blocks. Click "preview" to see example.
{endblock}
{beginblock layout="column" size="[number]"}
    ...
{endblock}

contact_form

{block layout="contact_form"
    email="[email]" form will be sent to this email.
    fromName="[fromName]" form will be sent with this from name.
    subject="[subject]" form will be sent with this subject (default: 'Form submitted at page ""').
    buttontext="[text]"
    title="[text]"
    titlecolor="[color]"
    titlealign="left|center|right" can be one of specified
    titletag="h1|h2|h3|h4|h5|h6|p" can be one of specified
    titleclass="h1|h2|h3|h4|h5|h6" use one tag but simulate look as another tag
    subtitle="[text]"
    subtitlecolor="[color]"
    subtitlealign="left|center|right" can be one of specified
    subtitletag="h1|h2|h3|h4|h5|h6|p" can be one of specified
    subtitleclass="h1|h2|h3|h4|h5|h6" use one tag but simulate look as another tag
    text="[text]"
    textcolor="[color]" sets color to title.
    height="[number]px" not recommended to use, because may cause problems with responsiveness.
    offsettop="[number]px" offset of block content from top.
    offsetbottom="[number]px" offset of block content from bottom.
    offsettopsmall="[number]px" offset of block content from top on smaller screens.
    offsetbottomsmall="[number]px" offset of block content from bottom on smaller screens.
    blockcolor="[color]" color of block.
    linecolor="[color]" color of line below the block.
    textcolor="[color]" color of text of properties "title", "subtitle", "textlist" and "numtextlist".
    background="[CSS code]" raw CSS code of background. If set and contains color definition, then "blockcolor" will be ignored.
    backgroundsize="contain|cover|auto" works only if "background" is set and contains image definition.
    titleposition="left|center|right" can be one of specified.
    texttop="[text]" inserts text at the top of any block
    textbottom="[text]" inserts text at the bottom of any block
    texttopalign="left|center|right" defaults to "center"
    textbottomalign="left|center|right" defaults to "center"
    anchor="[text]" will be used as an anchor to the block (will rewrite "title" if used in the block).
    showOnlyForCountry="LT" Can also be a list like ["LT","LV"]
    showForAllCountriesExcept="LT" Can also be a list like ["LT","LV"]
    showOnlyForCurrency="EUR" Can also be a list like ["EUR","USD"]
    showForAllCurrenciesExcept="EUR" Can also be a list like ["EUR","USD"]
    showOnlyForLanguage="LT" Can also be a list like ["LT","LV"]
    showForAllLanguagesExcept="LT" Can also be a list like ["LT","LV"]
    showOnlyForCoupon="give10" Can also be a list like ["give10","give50"]
    showForAllCouponsExcept="give10" Can also be a list like ["give10","give50"]
    showOnlyForNoCoupon="true"
    showOnlyForLogged="true"
    showOnlyForNotLogged="true"
}

custom

{beginblock layout="custom"
    title="[text]"
    titlecolor="[color]"
    titlealign="left|center|right" can be one of specified
    titletag="h1|h2|h3|h4|h5|h6|p" can be one of specified
    titleclass="h1|h2|h3|h4|h5|h6" use one tag but simulate look as another tag
    subtitle="[text]"
    subtitlecolor="[color]"
    subtitlealign="left|center|right" can be one of specified
    subtitletag="h1|h2|h3|h4|h5|h6|p" can be one of specified
    subtitleclass="h1|h2|h3|h4|h5|h6" use one tag but simulate look as another tag
    height="[number]px" not recommended to use, because may cause problems with responsiveness.
    offsettop="[number]px" offset of block content from top.
    offsetbottom="[number]px" offset of block content from bottom.
    offsettopsmall="[number]px" offset of block content from top on smaller screens.
    offsetbottomsmall="[number]px" offset of block content from bottom on smaller screens.
    blockcolor="[color]" color of block.
    linecolor="[color]" color of line below the block.
    textcolor="[color]" color of text of properties "title", "subtitle", "textlist" and "numtextlist".
    background="[CSS code]" raw CSS code of background. If set and contains color definition, then "blockcolor" will be ignored.
    backgroundsize="contain|cover|auto" works only if "background" is set and contains image definition.
    titleposition="left|center|right" can be one of specified.
    texttop="[text]" inserts text at the top of any block
    textbottom="[text]" inserts text at the bottom of any block
    texttopalign="left|center|right" defaults to "center"
    textbottomalign="left|center|right" defaults to "center"
    anchor="[text]" will be used as an anchor to the block (will rewrite "title" if used in the block).
    showOnlyForCountry="LT" Can also be a list like ["LT","LV"]
    showForAllCountriesExcept="LT" Can also be a list like ["LT","LV"]
    showOnlyForCurrency="EUR" Can also be a list like ["EUR","USD"]
    showForAllCurrenciesExcept="EUR" Can also be a list like ["EUR","USD"]
    showOnlyForLanguage="LT" Can also be a list like ["LT","LV"]
    showForAllLanguagesExcept="LT" Can also be a list like ["LT","LV"]
    showOnlyForCoupon="give10" Can also be a list like ["give10","give50"]
    showForAllCouponsExcept="give10" Can also be a list like ["give10","give50"]
    showOnlyForNoCoupon="true"
    showOnlyForLogged="true"
    showOnlyForNotLogged="true"
}
    there can be any text/HTML/landing blocks. Click "preview" to see example.
{endblock}

domains_main

<p>Block for search domains</p>

{block layout="domains_main"
    colorImageBg="#489335"					## <strong>colorImageBg</strong> — string, optional, Background color for parallax background
    colorImageFg="#62cd48"					## <strong>colorImageFg</strong> — string, optional, Circles color for parallax background
    title=""						## <strong>title</strong> — string, Title of the block
    subtitle=""						## <strong>title</strong> — string, Subtitle of the block
    text="<a href=\"{url page="domain-zones"}\">{{Full list of available domain zones}}</a> ([totalTldCount])"		## <strong>title</strong> — string, Text on bottom part of block
    textUnderInput="{{Most popular domain zones}}"		## <strong>title</strong> — string, Text under domain input
    placeholder="{{Type a domain name}}"			## <strong>title</strong> — string, Placeholder for domain input
    titlecolor="white"
    textcolor="#ffffff"
    blockcolor="#489335"
    linecolor="white"
    focus="true"						## <strong>title</strong> — boolean, Need to focus domain input after page load
    DomSearchBox="get-tld-from-url|domains"
    minHeight="midi"
    tlds=[".shop", ".xyz", ".site.pro", ".art", ".blog"]
    addLocalTlds="true"
}

download_video

{block layout="download_video"
    link="[URL]"
    link_cn="[URL for Chinese language]" optional, but recommended.
    image="[image URL]"
    text="[text]"
    additionaltext="[text]" optional, adds text after download text line.
    time="[text]"
    files=[
        "[file URL 1]"
        "[file URL 2]"
        ...
    ]
    height="[number]px" not recommended to use, because may cause problems with responsiveness.
    offsettop="[number]px" offset of block content from top.
    offsetbottom="[number]px" offset of block content from bottom.
    offsettopsmall="[number]px" offset of block content from top on smaller screens.
    offsetbottomsmall="[number]px" offset of block content from bottom on smaller screens.
    blockcolor="[color]" color of block.
    linecolor="[color]" color of line below the block.
    textcolor="[color]" color of text of properties "title", "subtitle", "textlist" and "numtextlist".
    background="[CSS code]" raw CSS code of background. If set and contains color definition, then "blockcolor" will be ignored.
    backgroundsize="contain|cover|auto" works only if "background" is set and contains image definition.
    titleposition="left|center|right" can be one of specified.
    texttop="[text]" inserts text at the top of any block
    textbottom="[text]" inserts text at the bottom of any block
    texttopalign="left|center|right" defaults to "center"
    textbottomalign="left|center|right" defaults to "center"
    anchor="[text]" will be used as an anchor to the block (will rewrite "title" if used in the block).
    showOnlyForCountry="LT" Can also be a list like ["LT","LV"]
    showForAllCountriesExcept="LT" Can also be a list like ["LT","LV"]
    showOnlyForCurrency="EUR" Can also be a list like ["EUR","USD"]
    showForAllCurrenciesExcept="EUR" Can also be a list like ["EUR","USD"]
    showOnlyForLanguage="LT" Can also be a list like ["LT","LV"]
    showForAllLanguagesExcept="LT" Can also be a list like ["LT","LV"]
    showOnlyForCoupon="give10" Can also be a list like ["give10","give50"]
    showForAllCouponsExcept="give10" Can also be a list like ["give10","give50"]
    showOnlyForNoCoupon="true"
    showOnlyForLogged="true"
    showOnlyForNotLogged="true"
}

download_video_list

{beginblock layout="download_video_list"
    title="[text]"
    titlecolor="[color]"
    titlealign="left|center|right" can be one of specified
    titletag="h1|h2|h3|h4|h5|h6|p" can be one of specified
    titleclass="h1|h2|h3|h4|h5|h6" use one tag but simulate look as another tag
    subtitle="[text]"
    subtitlecolor="[color]"
    subtitlealign="left|center|right" can be one of specified
    subtitletag="h1|h2|h3|h4|h5|h6|p" can be one of specified
    subtitleclass="h1|h2|h3|h4|h5|h6" use one tag but simulate look as another tag
    cols="[number]" 2 by default.
    height="[number]px" not recommended to use, because may cause problems with responsiveness.
    offsettop="[number]px" offset of block content from top.
    offsetbottom="[number]px" offset of block content from bottom.
    offsettopsmall="[number]px" offset of block content from top on smaller screens.
    offsetbottomsmall="[number]px" offset of block content from bottom on smaller screens.
    blockcolor="[color]" color of block.
    linecolor="[color]" color of line below the block.
    textcolor="[color]" color of text of properties "title", "subtitle", "textlist" and "numtextlist".
    background="[CSS code]" raw CSS code of background. If set and contains color definition, then "blockcolor" will be ignored.
    backgroundsize="contain|cover|auto" works only if "background" is set and contains image definition.
    titleposition="left|center|right" can be one of specified.
    texttop="[text]" inserts text at the top of any block
    textbottom="[text]" inserts text at the bottom of any block
    texttopalign="left|center|right" defaults to "center"
    textbottomalign="left|center|right" defaults to "center"
    anchor="[text]" will be used as an anchor to the block (will rewrite "title" if used in the block).
    showOnlyForCountry="LT" Can also be a list like ["LT","LV"]
    showForAllCountriesExcept="LT" Can also be a list like ["LT","LV"]
    showOnlyForCurrency="EUR" Can also be a list like ["EUR","USD"]
    showForAllCurrenciesExcept="EUR" Can also be a list like ["EUR","USD"]
    showOnlyForLanguage="LT" Can also be a list like ["LT","LV"]
    showForAllLanguagesExcept="LT" Can also be a list like ["LT","LV"]
    showOnlyForCoupon="give10" Can also be a list like ["give10","give50"]
    showForAllCouponsExcept="give10" Can also be a list like ["give10","give50"]
    showOnlyForNoCoupon="true"
    showOnlyForLogged="true"
    showOnlyForNotLogged="true"
}
    {block layout="download_video"
        ...
    }
    {block layout="download_video"
        ...
    }
{endblock}

faq

{block layout="faq"
    ids=["FAQ ID 1", "FAQ ID 2", ...]
    title="[text]"
    titlecolor="[color]"
    titlealign="left|center|right" can be one of specified
    titletag="h1|h2|h3|h4|h5|h6|p" can be one of specified
    titleclass="h1|h2|h3|h4|h5|h6" use one tag but simulate look as another tag
    subtitle="[text]"
    subtitlecolor="[color]"
    subtitlealign="left|center|right" can be one of specified
    subtitletag="h1|h2|h3|h4|h5|h6|p" can be one of specified
    subtitleclass="h1|h2|h3|h4|h5|h6" use one tag but simulate look as another tag
    showOnlyForCountry="LT" Can also be a list like ["LT","LV"]
    showForAllCountriesExcept="LT" Can also be a list like ["LT","LV"]
    showOnlyForCurrency="EUR" Can also be a list like ["EUR","USD"]
    showForAllCurrenciesExcept="EUR" Can also be a list like ["EUR","USD"]
    showOnlyForLanguage="LT" Can also be a list like ["LT","LV"]
    showForAllLanguagesExcept="LT" Can also be a list like ["LT","LV"]
    showOnlyForCoupon="give10" Can also be a list like ["give10","give50"]
    showForAllCouponsExcept="give10" Can also be a list like ["give10","give50"]
    showOnlyForNoCoupon="true"
    showOnlyForLogged="true"
    showOnlyForNotLogged="true"
}

feature_list

{beginblock layout="feature_list"
    title="[text]"
    titlecolor="[color]"
    titlealign="left|center|right" can be one of specified
    titletag="h1|h2|h3|h4|h5|h6|p" can be one of specified
    titleclass="h1|h2|h3|h4|h5|h6" use one tag but simulate look as another tag
    subtitle="[text]"
    subtitlecolor="[color]"
    subtitlealign="left|center|right" can be one of specified
    subtitletag="h1|h2|h3|h4|h5|h6|p" can be one of specified
    subtitleclass="h1|h2|h3|h4|h5|h6" use one tag but simulate look as another tag
    showByDefault="[number]" if set, then by default will show only specified number of features + button "Show more" below.
    showMoreButtonLabel="[text]" defaults to "Show More".
    textcolor="[color]" color for link and title for all 'feature' blocks
    [ascolumn="true"]  show feature blocks as column in mobile devices
    height="[number]px" not recommended to use, because may cause problems with responsiveness.
    offsettop="[number]px" offset of block content from top.
    offsetbottom="[number]px" offset of block content from bottom.
    offsettopsmall="[number]px" offset of block content from top on smaller screens.
    offsetbottomsmall="[number]px" offset of block content from bottom on smaller screens.
    blockcolor="[color]" color of block.
    linecolor="[color]" color of line below the block.
    textcolor="[color]" color of text of properties "title", "subtitle", "textlist" and "numtextlist".
    background="[CSS code]" raw CSS code of background. If set and contains color definition, then "blockcolor" will be ignored.
    backgroundsize="contain|cover|auto" works only if "background" is set and contains image definition.
    titleposition="left|center|right" can be one of specified.
    texttop="[text]" inserts text at the top of any block
    textbottom="[text]" inserts text at the bottom of any block
    texttopalign="left|center|right" defaults to "center"
    textbottomalign="left|center|right" defaults to "center"
    anchor="[text]" will be used as an anchor to the block (will rewrite "title" if used in the block).
    showOnlyForCountry="LT" Can also be a list like ["LT","LV"]
    showForAllCountriesExcept="LT" Can also be a list like ["LT","LV"]
    showOnlyForCurrency="EUR" Can also be a list like ["EUR","USD"]
    showForAllCurrenciesExcept="EUR" Can also be a list like ["EUR","USD"]
    showOnlyForLanguage="LT" Can also be a list like ["LT","LV"]
    showForAllLanguagesExcept="LT" Can also be a list like ["LT","LV"]
    showOnlyForCoupon="give10" Can also be a list like ["give10","give50"]
    showForAllCouponsExcept="give10" Can also be a list like ["give10","give50"]
    showOnlyForNoCoupon="true"
    showOnlyForLogged="true"
    showOnlyForNotLogged="true"
}
    List of blocks of type "feature". Click "preview" to see example.
    {block layout="feature"
        name="[text]"
        text="[text]"
        link="[URL]"
        tooltip="[text]" if set, render tooltip as text
        tooltipicon="[css icon class]" e.g. 'fa-question-circle'
        tooltiplink="[URL]" if set, render tooltip as link
        icon="[icon-ID]" the icon ID from one of icons group
        icongroup="tabler|fontawesome|bootstrap|flags|panels|competitors|patent" can be one of specified
        iconcolor="[color]"
        iconsize="[number]px"
        iconhtml="[text]" if set, then "icon" and "icongroup" will be ignored. Example: <i>123</i>
    }
    {block layout="feature"
        ...
    }
{endblock}

geomap

{block layout="geomap"
    title="[text]"
    titlecolor="[color]"
    titlealign="left|center|right" can be one of specified
    titletag="h1|h2|h3|h4|h5|h6|p" can be one of specified
    titleclass="h1|h2|h3|h4|h5|h6" use one tag but simulate look as another tag
    subtitle="[text]"
    subtitlecolor="[color]"
    subtitlealign="left|center|right" can be one of specified
    subtitletag="h1|h2|h3|h4|h5|h6|p" can be one of specified
    subtitleclass="h1|h2|h3|h4|h5|h6" use one tag but simulate look as another tag
    maptopcrop="[number]" number of pixels to crop the map from top. Optional
    showOnlyForCountry="LT" Can also be a list like ["LT","LV"]
    showForAllCountriesExcept="LT" Can also be a list like ["LT","LV"]
    showOnlyForCurrency="EUR" Can also be a list like ["EUR","USD"]
    showForAllCurrenciesExcept="EUR" Can also be a list like ["EUR","USD"]
    showOnlyForLanguage="LT" Can also be a list like ["LT","LV"]
    showForAllLanguagesExcept="LT" Can also be a list like ["LT","LV"]
    showOnlyForCoupon="give10" Can also be a list like ["give10","give50"]
    showForAllCouponsExcept="give10" Can also be a list like ["give10","give50"]
    showOnlyForNoCoupon="true"
    showOnlyForLogged="true"
    showOnlyForNotLogged="true"
}

image

{block layout="image"
    image="[image URL]"
    url="[URL]"
    imagealign="left|center|right"
    imagewidth="[number]px" e.g. '500px'
    imageheight="[number]px" e.g. '500px'
    shadow="true" if set, the shadow will be added to image.
    alt="[text]" image alt (if not set, then 'title' or 'text' will be used).
    title="[text]"
    titlecolor="[color]"
    titlealign="left|center|right" can be one of specified
    titletag="h1|h2|h3|h4|h5|h6|p" can be one of specified
    titleclass="h1|h2|h3|h4|h5|h6" use one tag but simulate look as another tag
    subtitle="[text]"
    subtitlecolor="[color]"
    subtitlealign="left|center|right" can be one of specified
    subtitletag="h1|h2|h3|h4|h5|h6|p" can be one of specified
    subtitleclass="h1|h2|h3|h4|h5|h6" use one tag but simulate look as another tag
    text="[text]"
    buttontext="[text]"
    buttonlink="[URL]" if set, then "buttontype" will be ignored.
    buttontype="signup|signup-all|builder|video|import|ai_generate" 
can be one of specified.
  • signup - will open registration form. Not visible for logged in users.
  • signup-all - similar to 'signup', but visible for logged in users too.
  • builder - generates a link to demo builder version.
  • video - opens a video in dialog with 'buttonlink' URL.
  • import - adds input for quick start of importing in builder.
  • ai_generate - adds input for quick start of generation website with AI in builder.
  • reg - adds input for quick registration.
buttoninputplaceholder="[text]" input placeholder for the button (used only for buttontype="import"). buttonicon="[icon-ID]" icon ID from font awesome icons. buttonicongroup="tabler|fontawesome|bootstrap|flags|panels|competitors|patent" can be one of specified. buttoncolor="default|default-inverted|primary|success|info|warning|danger|rose|violet|link|[color]" defaults to "success". Color classes: "default" is white, "default-inverted" is black, "primary" and "info" are blue, "success" is green, "warning" is orange, "danger" is red, "rose" is rose, "violet" is violet, and "link" is colorless button looking like a link. buttonbordercolor="[color]" defaults to appropriate bootstrap color depending on button color. buttontextcolor="[color]" defaults to white. buttonsize="xs|sm|normal|lg" defaults to 'normal' ('xs' - the smallest, 'lg' - the largest). buttonlabel="[text]" small text below the button. buttonlabelcolor="[color]" color of label. buttonid="[string]" this value will be used in Mixpanel as identifier of that button. buttoncomment="[text]" the same as label but bigger. buttongroupalign="left|center|right" can have multiple buttons buttontext2="[text]" buttonlink2="..." ... can have from 1 to 5 buttons. showOnlyForCountry="LT" Can also be a list like ["LT","LV"] showForAllCountriesExcept="LT" Can also be a list like ["LT","LV"] showOnlyForCurrency="EUR" Can also be a list like ["EUR","USD"] showForAllCurrenciesExcept="EUR" Can also be a list like ["EUR","USD"] showOnlyForLanguage="LT" Can also be a list like ["LT","LV"] showForAllLanguagesExcept="LT" Can also be a list like ["LT","LV"] showOnlyForCoupon="give10" Can also be a list like ["give10","give50"] showForAllCouponsExcept="give10" Can also be a list like ["give10","give50"] showOnlyForNoCoupon="true" showOnlyForLogged="true" showOnlyForNotLogged="true" }

mailbox_prices

{block layout="mailbox_prices"
    showOnlyForCountry="LT" Can also be a list like ["LT","LV"]
    showForAllCountriesExcept="LT" Can also be a list like ["LT","LV"]
    showOnlyForCurrency="EUR" Can also be a list like ["EUR","USD"]
    showForAllCurrenciesExcept="EUR" Can also be a list like ["EUR","USD"]
    showOnlyForLanguage="LT" Can also be a list like ["LT","LV"]
    showForAllLanguagesExcept="LT" Can also be a list like ["LT","LV"]
    showOnlyForCoupon="give10" Can also be a list like ["give10","give50"]
    showForAllCouponsExcept="give10" Can also be a list like ["give10","give50"]
    showOnlyForNoCoupon="true"
    showOnlyForLogged="true"
    showOnlyForNotLogged="true"
}

main

{block layout="main"
    title="[text]"
    titlecolor="[color]"
    titlealign="left|center|right" can be one of specified
    titletag="h1|h2|h3|h4|h5|h6|p" can be one of specified
    titleclass="h1|h2|h3|h4|h5|h6" use one tag but simulate look as another tag
    subtitle="[text]"
    subtitlecolor="[color]"
    subtitlealign="left|center|right" can be one of specified
    subtitletag="h1|h2|h3|h4|h5|h6|p" can be one of specified
    subtitleclass="h1|h2|h3|h4|h5|h6" use one tag but simulate look as another tag
    contentwidth="[number]px|[number]%" width of title and subtitle.
    blockHeight="[number]px|[number]%|auto|max|midi|mini" if not set, then block will be stretched to whole page. max - 600px, midi - 400px, mini - 300px.
    blockHeightMobileFull="true" if set, then block will be of full screen height on mobile ignoring parameter "blockHeight".
    buttontext="[text]"
    buttonlink="[URL]" if set, then "buttontype" will be ignored.
    buttontype="signup|signup-all|builder|video|import|ai_generate" 
can be one of specified.
  • signup - will open registration form. Not visible for logged in users.
  • signup-all - similar to 'signup', but visible for logged in users too.
  • builder - generates a link to demo builder version.
  • video - opens a video in dialog with 'buttonlink' URL.
  • import - adds input for quick start of importing in builder.
  • ai_generate - adds input for quick start of generation website with AI in builder.
  • reg - adds input for quick registration.
buttoninputplaceholder="[text]" input placeholder for the button (used only for buttontype="import"). buttonicon="[icon-ID]" icon ID from font awesome icons. buttonicongroup="tabler|fontawesome|bootstrap|flags|panels|competitors|patent" can be one of specified. buttoncolor="default|default-inverted|primary|success|info|warning|danger|rose|violet|link|[color]" defaults to "success". Color classes: "default" is white, "default-inverted" is black, "primary" and "info" are blue, "success" is green, "warning" is orange, "danger" is red, "rose" is rose, "violet" is violet, and "link" is colorless button looking like a link. buttonbordercolor="[color]" defaults to appropriate bootstrap color depending on button color. buttontextcolor="[color]" defaults to white. buttonsize="xs|sm|normal|lg" defaults to 'normal' ('xs' - the smallest, 'lg' - the largest). buttonlabel="[text]" small text below the button. buttonlabelcolor="[color]" color of label. buttonid="[string]" this value will be used in Mixpanel as identifier of that button. buttoncomment="[text]" the same as label but bigger. buttongroupalign="left|center|right" can have multiple buttons buttontext2="[text]" buttonlink2="..." ... can have from 1 to 5 buttons. buttonXSize="[number]" if set, then button will be increased specified number times. blocklink="[URL]" if set, then will make the whole block clickable. image="[image URL]" main background image. video="[video URL]" image2="[image URL]" additional image for the right side. If set, main content will move to the left side. imagewidth2="[number]" e.g. '500px' imageleft2="true" if set, main content and image2 will swap from right to left. alt2="[text]" alt for image2. icon="[icon-ID]" the icon ID from one of icons group icongroup="tabler|fontawesome|bootstrap|flags|panels|competitors|patent" can be one of specified iconcolor="[color]" iconsize="[number]px" iconhtml="[text]" if set, then "icon" and "icongroup" will be ignored. Example: <i>123</i> bgPositionY="[number]px|[number]%" image offset from top of block. backgroundImages=[ "image1.png|w=[N]|h=[N]|x=[N]|y=[N]|r=[N]|t=[N]" 'w' - width, 'h' - height (optional), 'x','y' - position, "image2.png|w=[N]|h=[N]|x=[N]|y=[N]|r=[N]|t=[N]" 'r' - rotation in degrees, 't' - percentage of transparency (0-100) ] textlinks=[ "[image URL]|[link URL]|[link text]" will generate image with link and text (text will be used as 'alt' for image) "[image URL]||[link text]" will generate image with text (text will be used as 'alt' for image) "|[link URL]|[link text]" will generate link with text ... ] textlinksalign="left|center|right" can be one of specified. textlist=[ unordered list with "checks". "[text]" "[text]" ... ] colorImageBg="#000000" colorImageBg — string, optional, Background color for parallax background colorImageFg="#7A4CD6" colorImageFg — string, optional, One color for all circles for parallax background colorImageFg1="#7A4CD6" colorImageFg1 — string, optional, First circle color for parallax background colorImageFg2="#FA5B65" colorImageFg2 — string, optional, Secondary circle color for parallax background colorImageFg3="#62CD47" colorImageFg3 — string, optional, 3 circle color for parallax background colorImageFg4="#F68C14" colorImageFg4 — string, optional, 4 circle color for parallax background colorImageFg5="#D24B69" colorImageFg5 — string, optional, 5 circle color for parallax background colorImageFg6="#4D4D4D" colorImageFg6 — string, optional, 6 circle color for parallax background colorImageFg7="#61B9FF" colorImageFg7 — string, optional, 7 circle color for parallax background blockHeightWithFlex="500px" blockHeightWithFlex — size in pixels, optional, Set height of block while block have inner content(beginblock ... endblock) height="[number]px" not recommended to use, because may cause problems with responsiveness. offsettop="[number]px" offset of block content from top. offsetbottom="[number]px" offset of block content from bottom. offsettopsmall="[number]px" offset of block content from top on smaller screens. offsetbottomsmall="[number]px" offset of block content from bottom on smaller screens. blockcolor="[color]" color of block. linecolor="[color]" color of line below the block. textcolor="[color]" color of text of properties "title", "subtitle", "textlist" and "numtextlist". background="[CSS code]" raw CSS code of background. If set and contains color definition, then "blockcolor" will be ignored. backgroundsize="contain|cover|auto" works only if "background" is set and contains image definition. titleposition="left|center|right" can be one of specified. texttop="[text]" inserts text at the top of any block textbottom="[text]" inserts text at the bottom of any block texttopalign="left|center|right" defaults to "center" textbottomalign="left|center|right" defaults to "center" anchor="[text]" will be used as an anchor to the block (will rewrite "title" if used in the block). showOnlyForCountry="LT" Can also be a list like ["LT","LV"] showForAllCountriesExcept="LT" Can also be a list like ["LT","LV"] showOnlyForCurrency="EUR" Can also be a list like ["EUR","USD"] showForAllCurrenciesExcept="EUR" Can also be a list like ["EUR","USD"] showOnlyForLanguage="LT" Can also be a list like ["LT","LV"] showForAllLanguagesExcept="LT" Can also be a list like ["LT","LV"] showOnlyForCoupon="give10" Can also be a list like ["give10","give50"] showForAllCouponsExcept="give10" Can also be a list like ["give10","give50"] showOnlyForNoCoupon="true" showOnlyForLogged="true" showOnlyForNotLogged="true" }

partner_cards_list

{beginblock layout="partner_cards_list"
    title="[text]"
    titlecolor="[color]"
    titlealign="left|center|right" can be one of specified
    titletag="h1|h2|h3|h4|h5|h6|p" can be one of specified
    titleclass="h1|h2|h3|h4|h5|h6" use one tag but simulate look as another tag
    subtitle="[text]"
    subtitlecolor="[color]"
    subtitlealign="left|center|right" can be one of specified
    subtitletag="h1|h2|h3|h4|h5|h6|p" can be one of specified
    subtitleclass="h1|h2|h3|h4|h5|h6" use one tag but simulate look as another tag
    showByDefault="[number]" if set, then by default will show only specified number of cards + button "Show more" below.
    showMoreButtonLabel="[text]" defaults to "Show More".
    itemsPerRow="[number]" can be either 1, 2, 3, 4, 6. Default is 2.
    height="[number]px" not recommended to use, because may cause problems with responsiveness.
    offsettop="[number]px" offset of block content from top.
    offsetbottom="[number]px" offset of block content from bottom.
    offsettopsmall="[number]px" offset of block content from top on smaller screens.
    offsetbottomsmall="[number]px" offset of block content from bottom on smaller screens.
    blockcolor="[color]" color of block.
    linecolor="[color]" color of line below the block.
    textcolor="[color]" color of text of properties "title", "subtitle", "textlist" and "numtextlist".
    background="[CSS code]" raw CSS code of background. If set and contains color definition, then "blockcolor" will be ignored.
    backgroundsize="contain|cover|auto" works only if "background" is set and contains image definition.
    titleposition="left|center|right" can be one of specified.
    texttop="[text]" inserts text at the top of any block
    textbottom="[text]" inserts text at the bottom of any block
    texttopalign="left|center|right" defaults to "center"
    textbottomalign="left|center|right" defaults to "center"
    anchor="[text]" will be used as an anchor to the block (will rewrite "title" if used in the block).
    showOnlyForCountry="LT" Can also be a list like ["LT","LV"]
    showForAllCountriesExcept="LT" Can also be a list like ["LT","LV"]
    showOnlyForCurrency="EUR" Can also be a list like ["EUR","USD"]
    showForAllCurrenciesExcept="EUR" Can also be a list like ["EUR","USD"]
    showOnlyForLanguage="LT" Can also be a list like ["LT","LV"]
    showForAllLanguagesExcept="LT" Can also be a list like ["LT","LV"]
    showOnlyForCoupon="give10" Can also be a list like ["give10","give50"]
    showForAllCouponsExcept="give10" Can also be a list like ["give10","give50"]
    showOnlyForNoCoupon="true"
    showOnlyForLogged="true"
    showOnlyForNotLogged="true"
}
    List of blocks of type "partner_card". Click "preview" to see example.
    {block layout="partner_card"
        image="[image URL]"
        imagewidth="[number]px" e.g. '200px'
        name="[text]" set to image element as a title.
        namecolor="#cecece"
        title="[text]"
        titlecolor="#cecece"
        alt="[text]" image alt (if not set, then 'title' or 'name' will be used for alt).
        text="[text]"
        [textcolor="#000"]
        link="[URL]" set to image.
    }
    {block layout="partner_card"
        ...
    }
{endblock}

person_comment

{block layout="person_comment"
    height="[number]px" max height of block.
    columntext="[text]" if set, then will display right column with specified text.
    columncolor="[color]" color of right column. Displayed if "columntext" is set.
    photo="[image URL]"
    text="[text]" main block text.
    icon="[icon-ID]" the icon ID from one of icons group
    icongroup="tabler|fontawesome|bootstrap|flags|panels|competitors|patent" can be one of specified
    iconcolor="[color]"
    iconsize="[number]px"
    iconhtml="[text]" if set, then "icon" and "icongroup" will be ignored. Example: <i>123</i>
    height="[number]px" not recommended to use, because may cause problems with responsiveness.
    offsettop="[number]px" offset of block content from top.
    offsetbottom="[number]px" offset of block content from bottom.
    offsettopsmall="[number]px" offset of block content from top on smaller screens.
    offsetbottomsmall="[number]px" offset of block content from bottom on smaller screens.
    blockcolor="[color]" color of block.
    linecolor="[color]" color of line below the block.
    textcolor="[color]" color of text of properties "title", "subtitle", "textlist" and "numtextlist".
    background="[CSS code]" raw CSS code of background. If set and contains color definition, then "blockcolor" will be ignored.
    backgroundsize="contain|cover|auto" works only if "background" is set and contains image definition.
    titleposition="left|center|right" can be one of specified.
    texttop="[text]" inserts text at the top of any block
    textbottom="[text]" inserts text at the bottom of any block
    texttopalign="left|center|right" defaults to "center"
    textbottomalign="left|center|right" defaults to "center"
    anchor="[text]" will be used as an anchor to the block (will rewrite "title" if used in the block).
    showOnlyForCountry="LT" Can also be a list like ["LT","LV"]
    showForAllCountriesExcept="LT" Can also be a list like ["LT","LV"]
    showOnlyForCurrency="EUR" Can also be a list like ["EUR","USD"]
    showForAllCurrenciesExcept="EUR" Can also be a list like ["EUR","USD"]
    showOnlyForLanguage="LT" Can also be a list like ["LT","LV"]
    showForAllLanguagesExcept="LT" Can also be a list like ["LT","LV"]
    showOnlyForCoupon="give10" Can also be a list like ["give10","give50"]
    showForAllCouponsExcept="give10" Can also be a list like ["give10","give50"]
    showOnlyForNoCoupon="true"
    showOnlyForLogged="true"
    showOnlyForNotLogged="true"
}

plan_list

{beginblock layout="custom"} must be inside "custom" block.
    {beginblock layout="plan_list"
        height="[number]px" not recommended to use, because may cause problems with responsiveness.
        offsettop="[number]px" offset of block content from top.
        offsetbottom="[number]px" offset of block content from bottom.
        offsettopsmall="[number]px" offset of block content from top on smaller screens.
        offsetbottomsmall="[number]px" offset of block content from bottom on smaller screens.
        blockcolor="[color]" color of block.
        linecolor="[color]" color of line below the block.
        textcolor="[color]" color of text of properties "title", "subtitle", "textlist" and "numtextlist".
        background="[CSS code]" raw CSS code of background. If set and contains color definition, then "blockcolor" will be ignored.
        backgroundsize="contain|cover|auto" works only if "background" is set and contains image definition.
        titleposition="left|center|right" can be one of specified.
        texttop="[text]" inserts text at the top of any block
        textbottom="[text]" inserts text at the bottom of any block
        texttopalign="left|center|right" defaults to "center"
        textbottomalign="left|center|right" defaults to "center"
        anchor="[text]" will be used as an anchor to the block (will rewrite "title" if used in the block).
        showOnlyForCountry="LT" Can also be a list like ["LT","LV"]
        showForAllCountriesExcept="LT" Can also be a list like ["LT","LV"]
        showOnlyForCurrency="EUR" Can also be a list like ["EUR","USD"]
        showForAllCurrenciesExcept="EUR" Can also be a list like ["EUR","USD"]
        showOnlyForLanguage="LT" Can also be a list like ["LT","LV"]
        showForAllLanguagesExcept="LT" Can also be a list like ["LT","LV"]
        showOnlyForCoupon="give10" Can also be a list like ["give10","give50"]
        showForAllCouponsExcept="give10" Can also be a list like ["give10","give50"]
        showOnlyForNoCoupon="true"
        showOnlyForLogged="true"
        showOnlyForNotLogged="true"
    }
        List of blocks of type "plan". Click "preview" to see example.
        {block layout="plan"
            title="[text]"
            items=[
                "[text1]"
                "[text2]"
                ...
            ]
            price="[text]"
        }
        {block layout="plan"
            ...
        }
    {endblock}
{endblock}

plugins

{block layout="plugins"
    title="[text]"
    titlecolor="[color]"
    titlealign="left|center|right" can be one of specified
    titletag="h1|h2|h3|h4|h5|h6|p" can be one of specified
    titleclass="h1|h2|h3|h4|h5|h6" use one tag but simulate look as another tag
    subtitle="[text]"
    subtitlecolor="[color]"
    subtitlealign="left|center|right" can be one of specified
    subtitletag="h1|h2|h3|h4|h5|h6|p" can be one of specified
    subtitleclass="h1|h2|h3|h4|h5|h6" use one tag but simulate look as another tag
    category="builder|accounting"
    type="gateway|video|maps|any" if set, then will take widgets only of specified type.
    noGroupTitle="true|false" if true, then will not show titles of widget groups.
    showByDefault=[ if set, then by default will show only specified widgets + button "Show more" below.
        "[widget ID]"
        "[widget ID]"
        "[widget ID]"
        ...
    ]
    showOnlyForCountry="LT" Can also be a list like ["LT","LV"]
    showForAllCountriesExcept="LT" Can also be a list like ["LT","LV"]
    showOnlyForCurrency="EUR" Can also be a list like ["EUR","USD"]
    showForAllCurrenciesExcept="EUR" Can also be a list like ["EUR","USD"]
    showOnlyForLanguage="LT" Can also be a list like ["LT","LV"]
    showForAllLanguagesExcept="LT" Can also be a list like ["LT","LV"]
    showOnlyForCoupon="give10" Can also be a list like ["give10","give50"]
    showForAllCouponsExcept="give10" Can also be a list like ["give10","give50"]
    showOnlyForNoCoupon="true"
    showOnlyForLogged="true"
    showOnlyForNotLogged="true"
}

row

{beginblock layout="row"
    maxwidth="[number]px"
    valign="top|middle|bottom" vertical alignment of columns.
    verticalFrom="wide|desktop|tablet|phone" if specified, columns will go vertically starting from the specified mode.
    mobilereversedirection="true|false" If specified, the inner blocks direction will be reversed.
    title="[text]"
    titlecolor="[color]"
    titlealign="left|center|right" can be one of specified
    titletag="h1|h2|h3|h4|h5|h6|p" can be one of specified
    titleclass="h1|h2|h3|h4|h5|h6" use one tag but simulate look as another tag
    subtitle="[text]"
    subtitlecolor="[color]"
    subtitlealign="left|center|right" can be one of specified
    subtitletag="h1|h2|h3|h4|h5|h6|p" can be one of specified
    subtitleclass="h1|h2|h3|h4|h5|h6" use one tag but simulate look as another tag
    height="[number]px" not recommended to use, because may cause problems with responsiveness.
    offsettop="[number]px" offset of block content from top.
    offsetbottom="[number]px" offset of block content from bottom.
    offsettopsmall="[number]px" offset of block content from top on smaller screens.
    offsetbottomsmall="[number]px" offset of block content from bottom on smaller screens.
    blockcolor="[color]" color of block.
    linecolor="[color]" color of line below the block.
    textcolor="[color]" color of text of properties "title", "subtitle", "textlist" and "numtextlist".
    background="[CSS code]" raw CSS code of background. If set and contains color definition, then "blockcolor" will be ignored.
    backgroundsize="contain|cover|auto" works only if "background" is set and contains image definition.
    titleposition="left|center|right" can be one of specified.
    texttop="[text]" inserts text at the top of any block
    textbottom="[text]" inserts text at the bottom of any block
    texttopalign="left|center|right" defaults to "center"
    textbottomalign="left|center|right" defaults to "center"
    anchor="[text]" will be used as an anchor to the block (will rewrite "title" if used in the block).
    showOnlyForCountry="LT" Can also be a list like ["LT","LV"]
    showForAllCountriesExcept="LT" Can also be a list like ["LT","LV"]
    showOnlyForCurrency="EUR" Can also be a list like ["EUR","USD"]
    showForAllCurrenciesExcept="EUR" Can also be a list like ["EUR","USD"]
    showOnlyForLanguage="LT" Can also be a list like ["LT","LV"]
    showForAllLanguagesExcept="LT" Can also be a list like ["LT","LV"]
    showOnlyForCoupon="give10" Can also be a list like ["give10","give50"]
    showForAllCouponsExcept="give10" Can also be a list like ["give10","give50"]
    showOnlyForNoCoupon="true"
    showOnlyForLogged="true"
    showOnlyForNotLogged="true"
}
    {beginblock layout="column"
        size="[number]" default size (can be from 1 to 12).
        sizeMedium="[number]" tablet size (can be from 1 to 12).
        sizeSmall="[number]" mobile size (can be from 1 to 12).
    }
        content for column goes here.
    {endblock}
    {beginblock layout="column"
        size="[number]" default size (can be from 1 to 12).
        sizeMedium="[number]" tablet size (can be from 1 to 12).
        sizeSmall="[number]" mobile size (can be from 1 to 12).
    }
        content for column goes here.
    {endblock}
{endblock}

slider

{block layout="slider"
    title="[text]"
    titlecolor="[color]"
    titlealign="left|center|right" can be one of specified
    titletag="h1|h2|h3|h4|h5|h6|p" can be one of specified
    titleclass="h1|h2|h3|h4|h5|h6" use one tag but simulate look as another tag
    subtitle="[text]"
    subtitlecolor="[color]"
    subtitlealign="left|center|right" can be one of specified
    subtitletag="h1|h2|h3|h4|h5|h6|p" can be one of specified
    subtitleclass="h1|h2|h3|h4|h5|h6" use one tag but simulate look as another tag
    text="[text]"
    textalign="left|center|right" Aligns all text in the block. Defaults to "left".
    buttontext="[text]"
    buttonlink="[URL]" if set, then "buttontype" will be ignored.
    buttontype="signup|signup-all|builder|video|import|ai_generate" 
can be one of specified.
  • signup - will open registration form. Not visible for logged in users.
  • signup-all - similar to 'signup', but visible for logged in users too.
  • builder - generates a link to demo builder version.
  • video - opens a video in dialog with 'buttonlink' URL.
  • import - adds input for quick start of importing in builder.
  • ai_generate - adds input for quick start of generation website with AI in builder.
  • reg - adds input for quick registration.
buttoninputplaceholder="[text]" input placeholder for the button (used only for buttontype="import"). buttonicon="[icon-ID]" icon ID from font awesome icons. buttonicongroup="tabler|fontawesome|bootstrap|flags|panels|competitors|patent" can be one of specified. buttoncolor="default|default-inverted|primary|success|info|warning|danger|rose|violet|link|[color]" defaults to "success". Color classes: "default" is white, "default-inverted" is black, "primary" and "info" are blue, "success" is green, "warning" is orange, "danger" is red, "rose" is rose, "violet" is violet, and "link" is colorless button looking like a link. buttonbordercolor="[color]" defaults to appropriate bootstrap color depending on button color. buttontextcolor="[color]" defaults to white. buttonsize="xs|sm|normal|lg" defaults to 'normal' ('xs' - the smallest, 'lg' - the largest). buttonlabel="[text]" small text below the button. buttonlabelcolor="[color]" color of label. buttonid="[string]" this value will be used in Mixpanel as identifier of that button. buttoncomment="[text]" the same as label but bigger. buttongroupalign="left|center|right" can have multiple buttons buttontext2="[text]" buttonlink2="..." ... can have up to 2 buttons. numtextlist=[ ordered list with numbers. "[text]" "[text]" ... ] bullettextlist=[ unordered list with bullets. "[text]" "[text]" ... ] textlist=[ unordered list with "checks". "[text]" "[text]" ... ] textlinks=[ "[image URL]|[link URL]|[link text]" will generate image with link and text (text will be used as 'alt' for image) "[image URL]||[link text]" will generate image with text (text will be used as 'alt' for image) "|[link URL]|[link text]" will generate link with text ... ] textlinksalign="left|center|right" can be one of specified. textcolor="[color]" columncolor="[color]" images=[ "[image 1 URL]" "[image 2 URL]" ... ] slidetimer="[number]" optional, if set and there's more than two images, slider automatically rotates between images at this speed in seconds. imagemargintop="[number]" optional, adds margin for image div. customimagewidth="[number]" optional, sets custom image width. youtube="[youtube URL]" youtubetitle="[youtubetitle text]" optional, but recommended, visible title in facade. youtubethumb="[youtubethumb url]" optional, link to preview image. Only work with embedded YouTube links (the URL must contain 'embed'). youku="[youku URL]" optional, but recommended. videowidth="[number]" value in pixels. videoheight="[number]" value in pixels. aspectRatio="3/9" must be 12 in total. aspectRatioSmall="4/8" must be 12 in total. usecontactform="true" optional, adds contact form to bottom of the left side content. usemap="true" optional, adds map of headquarters to the right side of the content. mapHeight=[number] optional, but recommended when using usemap. Sets map height. height="[number]px" not recommended to use, because may cause problems with responsiveness. offsettop="[number]px" offset of block content from top. offsetbottom="[number]px" offset of block content from bottom. offsettopsmall="[number]px" offset of block content from top on smaller screens. offsetbottomsmall="[number]px" offset of block content from bottom on smaller screens. blockcolor="[color]" color of block. linecolor="[color]" color of line below the block. textcolor="[color]" color of text of properties "title", "subtitle", "textlist" and "numtextlist". background="[CSS code]" raw CSS code of background. If set and contains color definition, then "blockcolor" will be ignored. backgroundsize="contain|cover|auto" works only if "background" is set and contains image definition. titleposition="left|center|right" can be one of specified. texttop="[text]" inserts text at the top of any block textbottom="[text]" inserts text at the bottom of any block texttopalign="left|center|right" defaults to "center" textbottomalign="left|center|right" defaults to "center" anchor="[text]" will be used as an anchor to the block (will rewrite "title" if used in the block). showOnlyForCountry="LT" Can also be a list like ["LT","LV"] showForAllCountriesExcept="LT" Can also be a list like ["LT","LV"] showOnlyForCurrency="EUR" Can also be a list like ["EUR","USD"] showForAllCurrenciesExcept="EUR" Can also be a list like ["EUR","USD"] showOnlyForLanguage="LT" Can also be a list like ["LT","LV"] showForAllLanguagesExcept="LT" Can also be a list like ["LT","LV"] showOnlyForCoupon="give10" Can also be a list like ["give10","give50"] showForAllCouponsExcept="give10" Can also be a list like ["give10","give50"] showOnlyForNoCoupon="true" showOnlyForLogged="true" showOnlyForNotLogged="true" }

templates

List of templates from the builder

You can use the variable [tldTemplatesTags] for the tags property, in which case the tags from the TLD table will be applied according to the TLD in the address bar.

{block layout="templates" title="{{E-commerce Templates}}" string, Title of the block category="E-commerce" string, Category name for filtering templates tags="Men, Book" array, List of tag names for filtering templates names="Books & More" array, List of template names for filtering templates limit="6" integer, Maximum number of templates to show autoHide="1" integer, The block will automatically hide if no matching templates are found, when the parameter is present } or {block layout="templates" title="{{E-commerce Templates}}" category="E-commerce" tags=["Men", "Book"] names=["Books & More"] limit="6" autoHide="1" }

text

{beginblock layout="text"
    width="[number]"
    title="[text]"
    titlecolor="[color]"
    titlealign="left|center|right" can be one of specified
    titletag="h1|h2|h3|h4|h5|h6|p" can be one of specified
    titleclass="h1|h2|h3|h4|h5|h6" use one tag but simulate look as another tag
    subtitle="[text]"
    subtitlecolor="[color]"
    subtitlealign="left|center|right" can be one of specified
    subtitletag="h1|h2|h3|h4|h5|h6|p" can be one of specified
    subtitleclass="h1|h2|h3|h4|h5|h6" use one tag but simulate look as another tag
    height="[number]px" not recommended to use, because may cause problems with responsiveness.
    offsettop="[number]px" offset of block content from top.
    offsetbottom="[number]px" offset of block content from bottom.
    offsettopsmall="[number]px" offset of block content from top on smaller screens.
    offsetbottomsmall="[number]px" offset of block content from bottom on smaller screens.
    blockcolor="[color]" color of block.
    linecolor="[color]" color of line below the block.
    textcolor="[color]" color of text of properties "title", "subtitle", "textlist" and "numtextlist".
    background="[CSS code]" raw CSS code of background. If set and contains color definition, then "blockcolor" will be ignored.
    backgroundsize="contain|cover|auto" works only if "background" is set and contains image definition.
    titleposition="left|center|right" can be one of specified.
    texttop="[text]" inserts text at the top of any block
    textbottom="[text]" inserts text at the bottom of any block
    texttopalign="left|center|right" defaults to "center"
    textbottomalign="left|center|right" defaults to "center"
    anchor="[text]" will be used as an anchor to the block (will rewrite "title" if used in the block).
    showOnlyForCountry="LT" Can also be a list like ["LT","LV"]
    showForAllCountriesExcept="LT" Can also be a list like ["LT","LV"]
    showOnlyForCurrency="EUR" Can also be a list like ["EUR","USD"]
    showForAllCurrenciesExcept="EUR" Can also be a list like ["EUR","USD"]
    showOnlyForLanguage="LT" Can also be a list like ["LT","LV"]
    showForAllLanguagesExcept="LT" Can also be a list like ["LT","LV"]
    showOnlyForCoupon="give10" Can also be a list like ["give10","give50"]
    showForAllCouponsExcept="give10" Can also be a list like ["give10","give50"]
    showOnlyForNoCoupon="true"
    showOnlyForLogged="true"
    showOnlyForNotLogged="true"
}
    the [text] should go here.
{endblock}

text_button

{block layout="text_button"
    textcolor="[color]"
    height="[number]px|auto" by default 190px. "auto" means minimum possible height.
    text="[text]"
    textalign="left|center|right" can be one of specified.
    subtext="[text]"
    numtextlist=[ ordered list with numbers.
        "[text]"
        "[text]"
        ...
    ]
    bullettextlist=[ unordered list with bullets.
        "[text]"
        "[text]"
        ...
    ]
    textlist=[ unordered list with "checks".
        "[text]"
        "[text]"
        ...
    ]
    buttontext="[text]"
    buttonlink="[URL]" if set, then "buttontype" will be ignored.
    buttontype="signup|signup-all|builder|video|import|ai_generate" 
can be one of specified.
  • signup - will open registration form. Not visible for logged in users.
  • signup-all - similar to 'signup', but visible for logged in users too.
  • builder - generates a link to demo builder version.
  • video - opens a video in dialog with 'buttonlink' URL.
  • import - adds input for quick start of importing in builder.
  • ai_generate - adds input for quick start of generation website with AI in builder.
  • reg - adds input for quick registration.
buttoninputplaceholder="[text]" input placeholder for the button (used only for buttontype="import"). buttonicon="[icon-ID]" icon ID from font awesome icons. buttonicongroup="tabler|fontawesome|bootstrap|flags|panels|competitors|patent" can be one of specified. buttoncolor="default|default-inverted|primary|success|info|warning|danger|rose|violet|link|[color]" defaults to "success". Color classes: "default" is white, "default-inverted" is black, "primary" and "info" are blue, "success" is green, "warning" is orange, "danger" is red, "rose" is rose, "violet" is violet, and "link" is colorless button looking like a link. buttonbordercolor="[color]" defaults to appropriate bootstrap color depending on button color. buttontextcolor="[color]" defaults to white. buttonsize="xs|sm|normal|lg" defaults to 'normal' ('xs' - the smallest, 'lg' - the largest). buttonlabel="[text]" small text below the button. buttonlabelcolor="[color]" color of label. buttonid="[string]" this value will be used in Mixpanel as identifier of that button. buttoncomment="[text]" the same as label but bigger. buttongroupalign="left|center|right" can have multiple buttons buttontext2="[text]" buttonlink2="..." ... can have from 1 to 5 buttons. height="[number]px" not recommended to use, because may cause problems with responsiveness. offsettop="[number]px" offset of block content from top. offsetbottom="[number]px" offset of block content from bottom. offsettopsmall="[number]px" offset of block content from top on smaller screens. offsetbottomsmall="[number]px" offset of block content from bottom on smaller screens. blockcolor="[color]" color of block. linecolor="[color]" color of line below the block. textcolor="[color]" color of text of properties "title", "subtitle", "textlist" and "numtextlist". background="[CSS code]" raw CSS code of background. If set and contains color definition, then "blockcolor" will be ignored. backgroundsize="contain|cover|auto" works only if "background" is set and contains image definition. titleposition="left|center|right" can be one of specified. texttop="[text]" inserts text at the top of any block textbottom="[text]" inserts text at the bottom of any block texttopalign="left|center|right" defaults to "center" textbottomalign="left|center|right" defaults to "center" anchor="[text]" will be used as an anchor to the block (will rewrite "title" if used in the block). showOnlyForCountry="LT" Can also be a list like ["LT","LV"] showForAllCountriesExcept="LT" Can also be a list like ["LT","LV"] showOnlyForCurrency="EUR" Can also be a list like ["EUR","USD"] showForAllCurrenciesExcept="EUR" Can also be a list like ["EUR","USD"] showOnlyForLanguage="LT" Can also be a list like ["LT","LV"] showForAllLanguagesExcept="LT" Can also be a list like ["LT","LV"] showOnlyForCoupon="give10" Can also be a list like ["give10","give50"] showForAllCouponsExcept="give10" Can also be a list like ["give10","give50"] showOnlyForNoCoupon="true" showOnlyForLogged="true" showOnlyForNotLogged="true" }

top_domain_names

{block layout="top_domain_names"
    tlds=[".tlds1", ".tlds2", ...]
    showOnlyForCountry="LT" Can also be a list like ["LT","LV"]
    showForAllCountriesExcept="LT" Can also be a list like ["LT","LV"]
    showOnlyForCurrency="EUR" Can also be a list like ["EUR","USD"]
    showForAllCurrenciesExcept="EUR" Can also be a list like ["EUR","USD"]
    showOnlyForLanguage="LT" Can also be a list like ["LT","LV"]
    showForAllLanguagesExcept="LT" Can also be a list like ["LT","LV"]
    showOnlyForCoupon="give10" Can also be a list like ["give10","give50"]
    showForAllCouponsExcept="give10" Can also be a list like ["give10","give50"]
    showOnlyForNoCoupon="true"
    showOnlyForLogged="true"
    showOnlyForNotLogged="true"
}

video

{block layout="video"
    youtube="[youtube URL]"
    youtubetitle="[youtubetitle text]" optional, but recommended, visible title in facade.
    youku="[youku URL]" optional, but recommended.
    videowidth="[number]" value in pixels.
    videoheight="[number]" value in pixels.
    title="[text]"
    titlecolor="[color]"
    titlealign="left|center|right" can be one of specified
    titletag="h1|h2|h3|h4|h5|h6|p" can be one of specified
    titleclass="h1|h2|h3|h4|h5|h6" use one tag but simulate look as another tag
    subtitle="[text]"
    subtitlecolor="[color]"
    subtitlealign="left|center|right" can be one of specified
    subtitletag="h1|h2|h3|h4|h5|h6|p" can be one of specified
    subtitleclass="h1|h2|h3|h4|h5|h6" use one tag but simulate look as another tag
    pretext="[text]" adds a text below title
    text="[text]" adds a text below video
    textcolor="[color]"
    height="[number]px" not recommended to use, because may cause problems with responsiveness.
    offsettop="[number]px" offset of block content from top.
    offsetbottom="[number]px" offset of block content from bottom.
    offsettopsmall="[number]px" offset of block content from top on smaller screens.
    offsetbottomsmall="[number]px" offset of block content from bottom on smaller screens.
    blockcolor="[color]" color of block.
    linecolor="[color]" color of line below the block.
    textcolor="[color]" color of text of properties "title", "subtitle", "textlist" and "numtextlist".
    background="[CSS code]" raw CSS code of background. If set and contains color definition, then "blockcolor" will be ignored.
    backgroundsize="contain|cover|auto" works only if "background" is set and contains image definition.
    titleposition="left|center|right" can be one of specified.
    texttop="[text]" inserts text at the top of any block
    textbottom="[text]" inserts text at the bottom of any block
    texttopalign="left|center|right" defaults to "center"
    textbottomalign="left|center|right" defaults to "center"
    anchor="[text]" will be used as an anchor to the block (will rewrite "title" if used in the block).
    showOnlyForCountry="LT" Can also be a list like ["LT","LV"]
    showForAllCountriesExcept="LT" Can also be a list like ["LT","LV"]
    showOnlyForCurrency="EUR" Can also be a list like ["EUR","USD"]
    showForAllCurrenciesExcept="EUR" Can also be a list like ["EUR","USD"]
    showOnlyForLanguage="LT" Can also be a list like ["LT","LV"]
    showForAllLanguagesExcept="LT" Can also be a list like ["LT","LV"]
    showOnlyForCoupon="give10" Can also be a list like ["give10","give50"]
    showForAllCouponsExcept="give10" Can also be a list like ["give10","give50"]
    showOnlyForNoCoupon="true"
    showOnlyForLogged="true"
    showOnlyForNotLogged="true"
}

video_list

{beginblock layout="video_list"
    title="[text]"
    titlecolor="[color]"
    titlealign="left|center|right" can be one of specified
    titletag="h1|h2|h3|h4|h5|h6|p" can be one of specified
    titleclass="h1|h2|h3|h4|h5|h6" use one tag but simulate look as another tag
    subtitle="[text]"
    subtitlecolor="[color]"
    subtitlealign="left|center|right" can be one of specified
    subtitletag="h1|h2|h3|h4|h5|h6|p" can be one of specified
    subtitleclass="h1|h2|h3|h4|h5|h6" use one tag but simulate look as another tag
    cols="[number]" "cols" - number of columns with video.
    showByDefault="[number]" if set, then by default will show only specified number of videos + button "Show more" below.
    showMoreButtonLabel="[text]" defaults to "Show More".
    pretext="[text]" adds a text below title
    text="[text]" adds a text below all videos
    height="[number]px" not recommended to use, because may cause problems with responsiveness.
    offsettop="[number]px" offset of block content from top.
    offsetbottom="[number]px" offset of block content from bottom.
    offsettopsmall="[number]px" offset of block content from top on smaller screens.
    offsetbottomsmall="[number]px" offset of block content from bottom on smaller screens.
    blockcolor="[color]" color of block.
    linecolor="[color]" color of line below the block.
    textcolor="[color]" color of text of properties "title", "subtitle", "textlist" and "numtextlist".
    background="[CSS code]" raw CSS code of background. If set and contains color definition, then "blockcolor" will be ignored.
    backgroundsize="contain|cover|auto" works only if "background" is set and contains image definition.
    titleposition="left|center|right" can be one of specified.
    texttop="[text]" inserts text at the top of any block
    textbottom="[text]" inserts text at the bottom of any block
    texttopalign="left|center|right" defaults to "center"
    textbottomalign="left|center|right" defaults to "center"
    anchor="[text]" will be used as an anchor to the block (will rewrite "title" if used in the block).
    showOnlyForCountry="LT" Can also be a list like ["LT","LV"]
    showForAllCountriesExcept="LT" Can also be a list like ["LT","LV"]
    showOnlyForCurrency="EUR" Can also be a list like ["EUR","USD"]
    showForAllCurrenciesExcept="EUR" Can also be a list like ["EUR","USD"]
    showOnlyForLanguage="LT" Can also be a list like ["LT","LV"]
    showForAllLanguagesExcept="LT" Can also be a list like ["LT","LV"]
    showOnlyForCoupon="give10" Can also be a list like ["give10","give50"]
    showForAllCouponsExcept="give10" Can also be a list like ["give10","give50"]
    showOnlyForNoCoupon="true"
    showOnlyForLogged="true"
    showOnlyForNotLogged="true"
}
    List of blocks of type "video". Click "preview" to see example.
    {block layout="video"
        youtube="https://www.youtube.com/embed/9O2HEcmusQw?rel=0&showinfo=0&vq=hd720"
        youku="http://player.youku.com/embed/XMzUxNjA0OTUwMA=="
        videowidth="840"
    }
    {block layout="video"
        ...
    }
{endblock}

Types

text

Can be either a simple text:
param="bla bla bla"

Also you can use translations inside text like this:
param="{{Website Builder}}"

It can be combined with multiple translations:
param="Hello, I am {{Website Builder}} and {{bla bla bla}}"

Translations can have parameters "%s", e.g.: You can have only %s website(s) in trial mode, then they must be replaced with real values like this:
param="{{You can have only %s website(s) in trial mode|3}}"

If there are more than 1 parameter inside translation then they all must be replaced:
param="{{Use hosting plans from %s dialog %s field|Edit Plans|Relate these hosting plans}}"
then the final phrase will be: Use hosting plans from Edit Plans dialog Relate these hosting plans field

Price convertion. The property supports the following price convertion to client's selected currency or a strict currency:
{price="5"} or {price="5" currency="ZAR"} or {price="5" nodecorate="yes"}
Usage: param="{{Wow! Now your plan costs only %s|{price="1"}|}}"
There are the following variables available that can be used instead of the numeric price:

  • {price="starter_month"}
  • {price="starter_year"}
  • {price="starter_year_month"}
  • {price="business_month"}
  • {price="business_year"}
  • {price="mailbox_lite_month"}
  • {price="mailbox_lite_year"}
  • {price="mailbox_pro_month"}
  • {price="mailbox_pro_year"}

The property supports the following placeholders:

  • [h1]text[/h1] or [h2]text[/h2] or [h3]text[/h3] or [h4]text[/h4] – Headings
    • align="left|center|right"
    • underlineFirstLetter="1" — underline 1st phrase letter
  • [p]text[/p] – Paragraph
    • align="left|center|right"
  • [hlt]text[/hlt] – Highlighted paragraph
    • align="left|center|right"
  • [b]text[/b] – Bold text
  • [i]text[/i] – Italic text
  • [u]text[/u] – Underlined text
  • [s]text[/s] – Striped text
  • [sup]text[/sup] – Inline text which is to be displayed as superscript
  • [sup]text[/sup] – Inline text which is to be displayed as subscript
  • [link="URL"]text[/link] – Link
  • [icon="icon-ID"] – Icon (default group is 'fontawesome')
    • group="tabler|fontawesome|bootstrap|flags|panels|competitors|patent"
  • [image="URL"] – Image
    • link="URL"
    • align="left|center|right"
    • alt="text"
  • [button link="URL"]label[/button] – Button
  • [list]
      - text text text A
      - text text text B
      - text text text C
    [/list]
    – Lists (default type is 'bullets')
    • type="bullets|numbers|letters|none"
    • title="text"
  • // BLOG-HEADER-BLOCK – Lists of tags for blog articles
  • // BLOG-NAVIGATION-BLOCK – Show Previous and Next buttons for blog article

    Example:

    {beginblock layout="text"}
    <div class="landing-text">
    // BLOG-NAVIGATION-BLOCK
    </div>
    {endblock}

Click here to see usage examples.

icon-ID

Must have a value of icon ID.
If block supports extra parameter "icongroup" and you specify it in the block then you need to look for an icon exactly of that group.
For example, is you use icongroup="fontawesome" then you need to look for an icon ID on fontawesome website.
Available groups:

  • tablerhttps://tabler.io/icons
  • fontawesomehttps://fontawesome.com/v4.7.0/icons/
  • bootstraphttps://getbootstrap.com/docs/3.4/components/
  • panels — can be one of these:
    atomia billmanager cpanel custompanel directadmin hostingcontroller interworx ispmanager plesk vesta hestia webmin whmcs zpanelcp dotshop blesta mpesa cekis citadele
  • competitors — can be one of these:
    basekit cm4all duda gomobi im_creator kopage mozello rvsitebuilder sitepad slimsite trendytools ucoz ucraft websplanet weebly yola googlesites joomla squarespace tilda webnode wix wordpress builderall flazio impressly jimdo moonfruit orson oxxy simplesite site123 sitey ukit voog webydo wopop zencommerce c-umi strikingly webs sitestar parallels clientsday zonat sitepro webcom samanbank clicktopay
  • flags — any country flag
    lt ru  and others...
  • patent — can be one of these:
    wipo shop
  • plugins — can be one of these:
    dot-ru dot-lt dot-ch dot-ae dot-ge bankgeorgia sbp youku adobe eshoprent opencart prestashop shopify sitepro verskis woocommerce amazon ebay etsy pigu varle api creditonline dabar esperonus flanco infotrans microsoft-power-platform peppol avanotify arslibra paysera-pos raso nsoft shopify-pos rkeeper mpesa2 b1-analitika designer share settings advanced gallery social commerce media backup save change-template choose-template qrpay dock-left dock-right artpay globe cekis citadele lrytas delfi 15min forbes allegro

color

Color can have one of these values:

URL

URL can be used as a plain text, e.g.:
param="https://www.google.com/"

or as Site.pro internal page, which must be constructed using {url} construction:
param="{url page="sitepro-page"}"
where sitepro-page must be replaced with a page reference ID.
Note that quote symbols (") inside {url} construction must NOT be replaced with (\") like in HTML code.

To make the URL work only for logged in users, add a special variable "requireLoggedIn" in the end of the URL:
param="{url page="sitepro-page"}|requireLoggedIn"

Here is the example of URL to FAQ page:
param="{url page="faq/123"}"
where "123" is FAQ page ID.

panel-ID

Can be one of the following: "atomia", "billmanager", "cpanel", "custompanel", "directadmin", "hostingcontroller", "interworx", "ispmanager", "plesk", "vesta", "hestia", "webmin", "whmcs", "zpanelcp", "dotshop".