10 lines
536 B
HTML
Raw Normal View History

2023-03-24 20:25:04 +08:00
<div xmlns:th="https://www.thymeleaf.org"
th:fragment="widget (sidebar)"
th:class="'card widget ' + ${sidebar.hide}">
<th:block th:utext="${sidebar.content}"/>
2023-03-24 20:25:04 +08:00
<span th:if="${theme.config.sidebar.show_ad_tag}" class="ad-tag">广告
<svg th:if="${theme.config.sidebar.ad_tag_close}" class="click-close" data-close=".widget"
xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15"><path
d="M3.25,3.25l8.5,8.5M11.75,3.25l-8.5,8.5"></path></svg>
2023-03-21 10:49:35 +08:00
</span>
2023-03-24 20:25:04 +08:00
</div>