- 03 Mar 2026
- Print
- DarkLight
- PDF
How-To: Add GTM container script code to your Branding Template
- Updated 03 Mar 2026
- Print
- DarkLight
- PDF
This article explains how to include your GTM container script in your Slate branding template.
Select Database on the top navigation bar.
Select Files.
Go to the 'shared' folder in the File Editor. Find the main build.xslt file of the branding template.
Click on the /shared/build.xslt to access the 'Edit File' view.

Find the tag near the top of the file (highlighted in the sample screenshot) and place your GTM just above the closing tag. In the example below, this would be above line 20. Note that the contents inside the file will vary from template to template - just concentrate on finding the closing tag.

Copy the code you received from the GTM installation instructions and paste the full script into the file.
Replace the “GTM-XXXXXX” with your Google Tag Manager container ID.
You will see something like this:

Note the 'red' code highlight (in the example above on line 20) indicating that there is malformed code that cannot be successfully parsed. If you attempt to save this file, you will encounter a browser error stating something like "An error occurred while parsing EntityName. Line 20, position 42.".
The Slate-based file editor is expecting valid XHTML code. Some characters are reserved in HTML; the '&' character is one of them. Character entities are used to display reserved characters in HTML. In the original script '&' merely needs to be properly escaped using the proper HTML entity code '&' . Once you type this into the file, the red markup will disappear:

Save the file (at the bottom of the pop-up window).
The next step will be to add the Google Tag Manager <noscript> HTML after the opening <body> tag:

Save the changes
For more information on GTM and the default version of the script see: https://developers.google.com/tag-manager/quickstart.
