-block

The -block tag allows Theme developers to group elements together for better organization inside the Governor App.

Tag

<div -block="blockName"></div>
    

Helper Tags

  • -label

Basic

Example: index.html

<section -section="Call Outs">
    <div -block="Call Out One">
        <i gv-text -label="Fontawesome Font Name" class="fa fa-@text"></i>
        <p gv-text -label="text"></p>
        <a gv-link -label="link"></a>
    </div>
</section>
    

Pro Tips

-block can be used with, or without a -section. When using -section and -block together, -block can only be within one -section. All control elements within -block will be grouped together inside an accordion element inside the Governor App.

Did this answer your question?