UPToZ
d19c1191ef
detailed: 1.增加了侧栏中的小板报、最新评论、最近发布、爱发电、广告、文章目录、分类的图标颜色。 2.增加了对侧栏的广告图片鼠标移入图片轻微放大的效果。 3.增加了爱发电API请求失败时的默认显示。 4.修改了侧栏中的标题与图标之间的间距。 5.修改了侧栏中爱发电内容区域的边距。
24 lines
1.2 KiB
HTML
24 lines
1.2 KiB
HTML
<!-- 广告 -->
|
|
<div class="card-widget" th:if="${theme.config.sidebar.adbox.adType=='google'}">
|
|
<div class="item-headline"><span>广告</span></div>
|
|
|
|
<script async
|
|
th:src="${'https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=' + theme.config.sidebar.adbox.ad_google.ad_client}"
|
|
crossorigin="anonymous"></script>
|
|
<!-- 广告2 -->
|
|
<ins class="adsbygoogle" style="display:block" th:data-ad-client="${theme.config.sidebar.adbox.ad_google.ad_client}"
|
|
th:data-ad-slot="${theme.config.sidebar.adbox.ad_google.ad_slot}"
|
|
th:data-ad-format="${theme.config.sidebar.adbox.ad_google.ad_format}"
|
|
th:data-full-width-responsive="${theme.config.sidebar.adbox.ad_google.full_width_responsive}"></ins>
|
|
<script>
|
|
(adsbygoogle = window.adsbygoogle || []).push({});
|
|
</script>
|
|
|
|
</div>
|
|
|
|
<div class="card-widget card-ad" th:if="${theme.config.sidebar.adbox.adType=='customAd'}">
|
|
<div class="item-headline"><i class="haofont hao-icon-fire"></i><span>广告</span></div>
|
|
<a th:href="${theme.config.sidebar.adbox.ad_custom.ad_redirect_url}" target="_blank" title="立即前往">
|
|
<img class="ad-img" th:src="${theme.config.sidebar.adbox.ad_custom.ad_pic_url}" alt="自定义广告">
|
|
</a>
|
|
</div> |