Files
kuboard-press/.vuepress/components/AdSenseTitlePureText.vue
huanqing.shao 2787c89a44 sharing
2019-10-31 23:39:59 +08:00

36 lines
1.1 KiB
Vue

<template>
<div v-if="$themeConfig.showAds && $isNotSharing" class="adsense-under-title" :style="$isDev ? 'background-color: grey;' : ''">
<!-- <script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script> -->
<!-- PageTopUnderTitle -->
<!-- <ins class="adsbygoogle"
style="display:inline-block;min-width:200px;max-width:1000px;width:100%;height:50px"
data-ad-client="ca-pub-3313149841665250"
data-ad-slot="1677363818"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script> -->
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<ins class="adsbygoogle"
style="display:block"
data-ad-format="fluid"
data-ad-layout-key="-i0-3+1f-3d+2z"
data-ad-client="ca-pub-3313149841665250"
data-ad-slot="3534684042"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
</div>
</template>
<script>
export default {
}
</script>
<style scoped>
.adsense-under-title {
border: 1px solid #d7dae2;
}
</style>