...
Styling
The template is considered a standalone document within the site and does not inherit any styling from the surrounding context. Therefore, any required styling must be directly applied within the template itself.
Links
Include target='_blank' attribute within the anchor tag when adding links, otherwise the link will not function as intended. For instance: <a href='https://<url>' target='_blank'>Link text</a>
...
You can integrate external content into your page using the <iframe>
tag, with . Simply specify the URL of the external content in the src
attribute pointing to the external content's URL. . However, keep in mind that the external site must be configured to allow being embedded as an iframe.<iframe src="https://example.com" width="600" height="400"></iframe>
It is essential to ensure that the domain of the external site is included in the site's Content Security Policy (CSP), which is configured in the deployment manager.
...
This helps maintain security by specifying which external resources are allowed to be loaded on your site.
The template may include a metadata field value, allowing for the dynamic passing of parameters to the external site, such as querystring parameters.
An example is provided below for reference.
...