mirror of
https://github.com/alexandrev/xslt-lab.git
synced 2026-09-16 18:23:16 +00:00
16 lines
594 B
HTML
16 lines
594 B
HTML
{{- $client := or .Site.Params.adsense.client (getenv "ADSENSE_CLIENT") -}}
|
|
{{- $slot := or .Site.Params.adsense.inArticleSlot (getenv "ADSENSE_INARTICLE_SLOT") -}}
|
|
{{- if and $client $slot (ne hugo.Environment "development") -}}
|
|
<div class="ad ad-in-article">
|
|
<ins class="adsbygoogle"
|
|
style="display:block; text-align:center;"
|
|
data-ad-layout="in-article"
|
|
data-ad-format="fluid"
|
|
data-ad-client="{{ $client }}"
|
|
data-ad-slot="{{ $slot }}"></ins>
|
|
</div>
|
|
<script>
|
|
(adsbygoogle = window.adsbygoogle || []).push({});
|
|
</script>
|
|
{{- end -}}
|