Skip to main content
Skip table of contents

Page tags

Page-builder allows you to insert dynamic tags into Text Blocks, your HTML template or JavaScript that will pull in relevant value from that page. This can be useful for SEO, Meta Data, and so on. The tags can display information such as the page notes that are configured in the admin settings.

For example if you wanted to change the “Title” of your html template for each page using it, you could insert this into your HTML code:

CODE
<title>${page~title}</title>

What tags are available?

NoneNone
CODE
${page~name}
The name configured in the page admin settings
CODE
${page~title}
The public title configured in the page admin settings
CODE
${page~notes}
Additional notes configured in the page admin settings
CODE
${page~number}
The pagination of a form
CODE
${event~title}
The title of the event
CODE
${event~description}
The description of the event
CODE
${page~clientRef1}
Custom reference field 1 value
CODE
${page~clientRef2}
Custom reference field 2 value
CODE
${page~clientRef3}
Custom reference field 3 value
CODE
${page~clientRef4}
Custom reference field 4 value
CODE
${page~clientRef5}
Custom reference field 5 value
CODE
${page~sessionId}

The current page session

CODE
${page~currentYear}

The current year – dynamic year tag

Where can I use page tags?

In a text block

You can type these directly into a text block and they will display the tag’s data on page load.

In the HTML template

You can use page tags as “variables” in your HTML templates. A common use is between the title tags:

CODE
<title>${page~name}</title>

In JavaScript

You can use JavaScript to get these tags and assign them to variables, for example:

CODE
<script>
  var pageName = "${page~name}";
  console.log (pageName);
</script>
JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.