discourse-adplugin/assets/javascripts/discourse/components/amazon-product-links.hbs

34 lines
907 B
Handlebars
Raw Normal View History

2024-11-20 09:43:19 -05: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 09:43:19 -05:00
style={{this.adWrapperStyleMobile}}
marginwidth="0"
marginheight="0"
scrolling="no"
frameborder="0"
2024-11-20 09:43:19 -05:00
src={{this.userInputMobile}}
title={{i18n "adplugin.advertisement_label"}}
>
2020-09-04 07:24:14 -04:00
</iframe>
{{else}}
<div class="amazon-product-links-label"><h2>{{i18n
"adplugin.advertisement_label"
}}</h2></div>
2020-09-04 07:24:14 -04:00
<div class="container" align="center">
<iframe
2024-11-20 09:43:19 -05:00
style={{this.adWrapperStyle}}
marginwidth="0"
marginheight="0"
scrolling="no"
frameborder="0"
2024-11-20 09:43:19 -05:00
src={{this.userInput}}
title={{i18n "adplugin.advertisement_label"}}
>
2020-09-04 07:24:14 -04:00
</iframe>
</div>
{{/if}}
{{/if}}