34 lines
907 B
Handlebars
Raw Normal View History

2024-11-20 14:43:19 +00:00
{{#if this.showAd}}
{{#if this.site.mobileView}}
<div
class="amazon-product-links-label"
style={{this.adTitleStyleMobile}}
><h2>{{i18n "adplugin.advertisement_label"}}</h2></div>
<iframe
2024-11-20 14:43:19 +00:00
style={{this.adWrapperStyleMobile}}
marginwidth="0"
marginheight="0"
scrolling="no"
frameborder="0"
2024-11-20 14:43:19 +00:00
src={{this.userInputMobile}}
title={{i18n "adplugin.advertisement_label"}}
>
2020-09-04 13:24:14 +02:00
</iframe>
{{else}}
<div class="amazon-product-links-label"><h2>{{i18n
"adplugin.advertisement_label"
}}</h2></div>
2020-09-04 13:24:14 +02:00
<div class="container" align="center">
<iframe
2024-11-20 14:43:19 +00:00
style={{this.adWrapperStyle}}
marginwidth="0"
marginheight="0"
scrolling="no"
frameborder="0"
2024-11-20 14:43:19 +00:00
src={{this.userInput}}
title={{i18n "adplugin.advertisement_label"}}
>
2020-09-04 13:24:14 +02:00
</iframe>
</div>
{{/if}}
{{/if}}