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

10 lines
461 B
Handlebars
Raw Normal View History

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