
Insights
Designed for curious minds
Discover a cross-section of content from industry leaders and experts shaping the future of our innovation economy.

Insights
Designed for curious minds
Discover a cross-section of content from industry leaders and experts shaping the future of our innovation economy.
CIBC Innovation Banking Videos
From actionable lessons to must-ask questions, our #CIBCInnovationEconomy video series showcases how founders have navigated the growth of their company.
An error occurred while processing the template.
Syntax error in template "709831#709857#1200555" in line 4, column 53: Naming convention mismatch. Identifiers that are part of the template language (not the user specified ones) must consistently use the same naming convention within the same template. This template uses legacy naming convention (directive (tag) names are like examplename, everything else is like example_name) estabilished by auto-detection at line 4, column 39 by token "has_content", but the problematic token, "VideoCarouselImage", uses a different convention.
1<#-- DDM Template (Child) - IB Insight Video -->
2
3<#-- Safe field assignments with defaults -->
4<#assign fileId = (VideoCarouselImage?has_content ? VideoCarouselImage.getAttribute("fileEntryId") : "") />
5<#assign altText = (VideoCarouselImage?has_content ? VideoCarouselImage.getAttribute("alt") : "") />
6<#assign videoCarouselImage = (VideoCarouselImage?has_content ? VideoCarouselImage.getData() : "") />
7
8<#-- IMAGE RENDERING -->
9<#if videoCarouselImage?has_content>
10 <img
11 alt="${altText}"
12 data-fileentryid="${fileId}"
13 src="${videoCarouselImage}"
14 class="video-image"
15 />
16</#if>
17
18<style>
19.video-img-div {
20 display: flex;
21 align-items: center;
22}
23.video-img-div .journal-content-article,
24.video-img-div .journal-content-article picture {
25 height: 100%;
26}
27</style>