fix: 修改页脚,感谢枫林幻境技术支持

This commit is contained in:
josxy 2021-04-23 23:11:20 +08:00
parent ed74e52589
commit 784c427251

View File

@ -21,6 +21,12 @@
<!--图标部署-->
<link rel="shortcut icon" href="/favicon.ico" />
<link rel="bookmark" href="/favicon.ico" type="image/x-icon"/>
<style type="text/css">
.m-padded-tb-massive {
padding-top: 2em !important;
padding-bottom: 0.5em !important;
}
</style>
</head>
<body>
<!--导航-->
@ -52,46 +58,52 @@
<!--底部footer-->
<footer th:fragment="footer" class="ui inverted vertical segment m-padded-tb-massive ">
<div class="ui center aligned container ">
<div class="ui inverted divided stackable grid">
<div class="three wide column">
<div class="ui inverted link list">
<h4 class="ui inverted header m-opacity-min">站长QQ</h4>
<div class="item">
<img src="../static/images/WeChat.jpg" th:src="@{/images/QQ.png}" CLASS="ui rounded image" alt="" style="width:110px">
</div>
</div>
</div>
<div class="three wide column">
<h4 class="ui inverted header m-opacity-min">最新动态</h4>
<div id="newblog-container">
<div class="ui inverted link list" th:fragment="newblogList">
<a href="#" th:href="@{/blog/{id}(id=${blog.id})}" target="_blank" class="item" th:each="blog : ${newblogs}" th:text="${blog.title}">我在等你2021年</a>
<!--/*-->
<a href="#" class="item">idea的操作笔记</a>
<a href="#" class="item">SpringBoot学习计划</a>
<!--*/-->
</div>
</div>
</div>
<div class="three wide column">
<h4 class="ui inverted header m-opacity-min">联系作者</h4>
<div class="ui inverted link list">
<a href="https://space.bilibili.com/424210875" class="item" target="_blank">我的B站</a>
<a href="#" class="item">Q Q: 754719461</a>
<a href="#" class="item">邮箱: qfmx520@163.com</a>
</div>
<div id="yiyan" class="ui m-text-thin m-text-spaced m-opacity-tiny center aligned"></div>
</div>
<div class="seven wide column">
<h4 class="ui inverted header m-opacity-min">作者寄语</h4>
<p class="m-text-thin m-text-spaced m-opacity-min m-text-lined">
相遇,心绪如白云飘飘;拥有,心花如雨露纷飞;错过,心灵如流沙肆虐。回首,幽情如蓝静夜清。白茶清欢无别事,我在等风也等你!
</p>
</div>
</div>
<!-- <div class="three wide column">-->
<!-- <div class="ui inverted link list">-->
<!-- <h4 class="ui inverted header m-opacity-min">站长QQ</h4>-->
<!-- <div class="item">-->
<!-- <img src="../static/images/WeChat.jpg" th:src="@{/images/QQ.png}" CLASS="ui rounded image" alt="" style="width:110px">-->
<!-- </div>-->
<!-- </div>-->
<!-- </div>-->
<!-- <div class="three wide column">-->
<!-- <h4 class="ui inverted header m-opacity-min">最新动态</h4>-->
<!-- <div id="newblog-container">-->
<!-- <div class="ui inverted link list" th:fragment="newblogList">-->
<!-- <a href="#" th:href="@{/blog/{id}(id=${blog.id})}" target="_blank" class="item" th:each="blog : ${newblogs}" th:text="${blog.title}">我在等你2021年</a>-->
<!-- &lt;!&ndash;/*&ndash;&gt;-->
<!-- <a href="#" class="item">idea的操作笔记</a>-->
<!-- <a href="#" class="item">SpringBoot学习计划</a>-->
<!-- &lt;!&ndash;*/&ndash;&gt;-->
<!-- </div>-->
<!-- </div>-->
<!-- </div>-->
<!-- <div class="three wide column">-->
<!-- <h4 class="ui inverted header m-opacity-min">联系作者</h4>-->
<!-- <div class="ui inverted link list">-->
<!-- <a href="https://space.bilibili.com/424210875" class="item" target="_blank">我的B站</a>-->
<!-- <a href="#" class="item">Q Q: 754719461</a>-->
<!-- <a href="#" class="item">邮箱: qfmx520@163.com</a>-->
<!-- </div>-->
<!-- </div>-->
<!-- <div class="seven wide column">-->
<!-- <h4 class="ui inverted header m-opacity-min">作者寄语</h4>-->
<!-- <p class="m-text-thin m-text-spaced m-opacity-min m-text-lined">-->
<!-- 相遇,心绪如白云飘飘;拥有,心花如雨露纷飞;错过,心灵如流沙肆虐。回首,幽情如蓝静夜清。白茶清欢无别事,我在等风也等你!-->
<!-- </p>-->
<!-- </div>-->
<p class="m-text-thin m-text-spaced m-opacity-tiny">©2021 浅枫沐雪</p>
<a href="https://www.foreverblog.cn/" class="d-inline-block text-muted" target="_blank"><img src="https://resource.upcdn.rainss.cn/2019/11/3368312888.png" alt="" style="width:auto;height:16px;"> </a>
<p class="m-text-thin m-text-spaced m-opacity-tiny">
<p class="small"> Powered by <a href="http://spring.io" target="_blank">spring</a> · Theme is <a href="https://josxy.cn" target="_blank">mx</a></p>
</p>
<!--分割线-->
<div class="ui inverted section divider"></div>
<p class="m-text-thin m-text-spaced m-opacity-tiny">Copy © 2020 - 2021 作者:josxy 此站仅供个人所有 如有疑问联系作者</p>
</div>
</footer>
@ -114,6 +126,13 @@
<script>
$('#newblog-container').load(/*[[@{/footer/newblog}]]*/"/footer/newblog");
</script>
<script >
/* let url = "https://v1.hitokoto.cn/?c=f&encode=text";
$.get(url,null,function (data){
$("#yiyan").text(data);
console.log(data);
})*/
</script>
</th:block>
</body>
</html>