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

18 lines
654 B
Handlebars
Raw Normal View History

{{#if checkTrustLevels}}
2015-08-19 20:07:51 -04:00
{{#if loadedGoogletag}}
2015-09-29 20:48:26 -04:00
<div class="google-dfp-ad-label"><h2>ADVERTISEMENT</h2></div>
{{#if site.mobileView}}
2015-09-01 23:50:47 -04:00
<div id={{divId}} style={{adWrapperStyleMobile}} class="dfp-ad-unit" align=center>
<script type='text/javascript'>
googletag.cmd.push(function() { googletag.display('{{divId}}'); });
</script>
</div>
{{else}}
2015-09-01 23:50:47 -04:00
<div id={{divId}} style={{adWrapperStyle}} class="dfp-ad-unit" align=center>
<script type='text/javascript'>
googletag.cmd.push(function() { googletag.display('{{divId}}'); });
</script>
</div>
{{/if}}
2015-08-19 20:07:51 -04:00
{{/if}}
{{/if}}