UPToZ
6d00368bfe
1.修改侧栏中的广告图片为圆角,并增加了上边距。 2.给侧栏中的广告区内的“广告”字样前面增加了一个小图标。 3.给首页的登录二级菜单增加了边框,同时减小了宽度,并且增加了上边距。 4.增加忽略文件。
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" th:if="${theme.config.sidebar.adbox.adType=='customAd'}">
|
|
<div class="item-headline"><i class="haofont hao-icon-bullhorn"></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> |