Extra HTML For Support Page¶
You have the option to include custom HTML on the support information page. You can leverage nearly all HTML-related content by utilizing the extra.html.twig files.
Note
If you're using iframes and the content within the iframe isn't being displayed, it's worth considering that the content policy of third-party proxies might be causing the obstruction. To investigate, please inspect your browser's developer console for any potential errors or issues.
Configuration¶
extra.html.twig
<!-- Beginn content of your extra.html.twig file -->
<div class="row">
<div class="col-md"></div>
<div class="col-md-5">
<iframe style="border:none; width:100%; height:400px;margin-top:50px;" src="https://example.com/some/page"></iframe>
</div>
<div class="col-md"></div>
</div>
<!-- End content of extra.html.twig -->
docker-compose.yml
version: "3.5"
services:
cep:
image: registry.ceplabs.com/aaf/cep:latest
container_name: cep
volumes:
- aaf_webd-config:/etc/nginx/certs:ro
- ${PWD}/extra.html.twig:/var/www/html/templates/default/extra.html.twig
restart: unless-stopped
ports:
- "8443:443"
env_file:
- base.env
volumes:
aaf_webd-config:
external: true