discourse-adplugin/assets/javascripts/discourse/components/google-dfp-ad.hbs

22 lines
579 B
Handlebars
Raw Normal View History

2024-11-20 09:43:19 -05:00
{{#if this.showAd}}
{{#if this.site.mobileView}}
<div class="google-dfp-ad-label" style={{this.adTitleStyleMobile}}><h2
>{{i18n "adplugin.advertisement_label"}}</h2></div>
<div
2024-11-20 09:43:19 -05:00
id={{this.divId}}
style={{this.adWrapperStyle}}
class="dfp-ad-unit"
align="center"
></div>
{{else}}
<div class="google-dfp-ad-label"><h2>{{i18n
"adplugin.advertisement_label"
}}</h2></div>
<div
2024-11-20 09:43:19 -05:00
id={{this.divId}}
style={{this.adWrapperStyle}}
class="dfp-ad-unit"
align="center"
></div>
2015-08-19 20:07:51 -04:00
{{/if}}
{{/if}}