blob: 18c1f4bdba686e25dfe6fe6449c6044553a7f9e5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?xml version="1.0" encoding="UTF-8"?>
<templates xml:space="preserve">
<t t-name="website.background.video">
<div class="o_bg_video_container">
<div class="o_bg_video_loading d-flex justify-content-center align-items-center text-primary">
<div class="spinner-border" style="width: 4em; height: 4em;" role="status">
<span class="sr-only">Loading...</span>
</div>
</div>
<iframe t-att-id="iframeID"
class="o_bg_video_iframe fade"
frameBorder="0"
t-att-src="videoSrc"/>
</div>
</t>
</templates>
|