gv-meta

The gv-meta tag is used to insert meta values of the current page into the corresponding HTML element. Currently keywords, description, and author are supported.

Tag

<meta gv-meta="keywords">
<meta gv-meta="description">
<meta gv-meta="author">
    

Basic

Example: master.html

<!DOCTYPE html>
<!--[if IE 9]> <html lang="en" class="ie9"> <![endif]-->
<!--[if !IE]><!-->
<html lang="en">
    <!--<![endif]-->
    <head>
        <meta gv-meta="keywords">
        <meta gv-meta="description">
        <meta gv-meta="author">
        <title gv-title></title>
    </head>
    <body>
        <div gv-content></div>
    </body>
</html>
    

Pro Tips

Metas are set inside the Governor app when creating a new page.

Did this answer your question?