Files
halo-theme-pix/templates/modules/widgets/aside/user_widget.html
T
2026-03-10 17:17:32 +08:00

16 lines
934 B
HTML

<section class="widget admin_widget">
<div class="wid_title" th:text="${theme.config.sidebar.user_widget.title}">Follow Me</div>
<div class="items wid_sw_social" th:with="info = ${theme.config.sidebar.user_widget.admin_info}">
<div class="sw_item" th:each="base,iStat : ${info}">
<a
th:href="${base.ad_link}" class="sw_social" th:target="${base.ad_open_new}"
th:uk-tooltip="${base.ad_title}" th:style="${'background:'+base.s_btn_bg}">
<i th:if="${not #strings.isEmpty(base.ad_icon)}" th:class="${base.ad_icon}"></i>
<img th:unless="${not #strings.isEmpty(base.ad_icon)}" th:src="${base.ad_img}"/>
</a>
<div th:if="${base.ad_show_type == 'qrcode'}" class="sw_qrcode" style="display: none;">
<img th:src="${base.ad_qrcode}">
</div>
</div>
</div>
</section>