Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ads.html « shortcodes « layouts - github.com/uPagge/uBlogger.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 713ff025628a39c9e6a374d63785b6c9ab41122d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{{ with cond $.IsNamedParams ($.Get "slot") "" | default $.Site.Params.Advertising.Google.Slot }}
<div class="{{ if $.Get `circuit` | ne false }}cat-cit{{ end }}">
    <div class="no-adb">
    <script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
    <ins class="adsbygoogle"
         style="display:block; text-align:center;"
         data-ad-layout="in-article"
         data-ad-format="fluid"
         data-ad-client="{{- with $.Site.Params.Advertising.Google.Client -}}{{ . }}{{ end }}"
         data-ad-slot="{{ . }}"></ins>
    <script>
        (adsbygoogle = window.adsbygoogle || []).push({});
    </script>
    </div>
</div>
{{ end }}