-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #166 from jamebal/develop
feat: 登陆页面和博客页面新增自定义页脚html
- Loading branch information
Showing
8 changed files
with
88 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,13 @@ | ||
<footer id="footer" class="clearfix" xmlns:th="http://www.thymeleaf.org"> | ||
<br><br><br> | ||
<div class="copyright"> | ||
<p><span th:text="${setting.copyright}"></span></p> | ||
<p style="margin-top: 5px;"> | ||
<a href="http://beian.miit.gov.cn" target="_blank" th:text="${setting.recordPermissionNum}"></a> | ||
<a target="_blank" style="margin-left: 5px;" th:href="'http://www.beian.gov.cn/portal/registerSystemInfo?recordcode='+${setting.networkRecordNumber}"><img th:if="${setting.isShowBeian()}" style="width: 15px;" th:src="${setting.siteUrl} + '/img/beian.png'" /><span th:text="${setting.networkRecordNumberStr}"></span></a> | ||
</p> | ||
<footer xmlns:th="http://www.thymeleaf.org"> | ||
<div id="footer" th:if="${setting.footerHtml == null || setting.footerHtml.length == 0}"> | ||
<br><br> | ||
<div class="copyright"> | ||
<p><span th:text="${setting.copyright}"></span></p> | ||
<p style="margin-top: 5px;"> | ||
<a href="http://beian.miit.gov.cn" target="_blank" th:text="${setting.recordPermissionNum}"></a> | ||
<a target="_blank" style="margin-left: 5px;" th:href="'http://www.beian.gov.cn/portal/registerSystemInfo?recordcode='+${setting.networkRecordNumber}"><img th:if="${setting.isShowBeian()}" style="width: 15px;" th:src="${setting.siteUrl} + '/img/beian.png'" /><span th:text="${setting.networkRecordNumberStr}"></span></a> | ||
</p> | ||
</div> | ||
</div> | ||
<div th:if="${setting.footerHtml != null && setting.footerHtml.length > 0}" th:utext="${setting.footerHtml}"></div> | ||
</footer> |