2021-01-17 11:14:50 +08:00
|
|
|
<!doctype html>
|
2021-02-11 21:31:41 +08:00
|
|
|
<html lang="en" xmlns:th="http://www.thymeleaf.org">
|
2021-01-17 11:14:50 +08:00
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
2021-02-11 21:31:41 +08:00
|
|
|
<link rel="icon" type="shortcut icon" th:href="@{/img/favicon.ico}" />
|
|
|
|
<link rel="stylesheet" type="text/css" th:href="@{/css/bootstrap.min.css}" />
|
|
|
|
<link rel="stylesheet" type="text/css" th:href="@{/css/global.css}" />
|
|
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.3.0/font/bootstrap-icons.css">
|
2021-02-17 23:05:27 +08:00
|
|
|
<title>Echo - 我的帖子</title>
|
2021-01-17 11:14:50 +08:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="nk-container">
|
|
|
|
<!-- 头部 -->
|
2021-02-11 21:31:41 +08:00
|
|
|
<header class="bg-dark sticky-top" th:replace="index::header"></header>
|
2021-01-17 11:14:50 +08:00
|
|
|
|
|
|
|
<!-- 内容 -->
|
|
|
|
<div class="main">
|
|
|
|
<div class="container">
|
|
|
|
<!-- 选项 -->
|
|
|
|
<div class="position-relative">
|
2021-02-11 21:31:41 +08:00
|
|
|
<ul class="nav nav-tabs" th:replace="/site/profile::profiletab"></ul>
|
2021-01-17 11:14:50 +08:00
|
|
|
</div>
|
|
|
|
<!-- 我的帖子 -->
|
|
|
|
<div class="mt-4">
|
2021-02-11 21:31:41 +08:00
|
|
|
<h6><b class="square"></b> 帖子总数 (<i th:text="${rows}"></i>)</h6>
|
2021-01-17 11:14:50 +08:00
|
|
|
<ul class="list-unstyled mt-4 pl-3 pr-3">
|
2021-02-11 21:31:41 +08:00
|
|
|
<li class="border-bottom pb-3 mt-4" th:each="map:${discussPosts}">
|
2021-01-17 11:14:50 +08:00
|
|
|
<div class="font-size-16 text-info">
|
2021-02-11 21:31:41 +08:00
|
|
|
<a th:href="@{|/discuss/detail/${map.post.id}|}" class="text-info" th:utext="${map.post.title}">文章标题</a>
|
2021-01-17 11:14:50 +08:00
|
|
|
</div>
|
2021-02-11 21:31:41 +08:00
|
|
|
<div class="mt-1 font-size-14" th:utext="${map.post.content}">文章内容</div>
|
2021-01-17 11:14:50 +08:00
|
|
|
<div class="text-right font-size-12 text-muted">
|
2021-02-11 21:31:41 +08:00
|
|
|
赞 <i class="mr-3" th:text="${map.likeCount}"></i>
|
|
|
|
发布于 <b th:text="${#dates.format(map.post.createTime,'yyyy-MM-dd HH:mm:ss')}"></b>
|
2021-01-17 11:14:50 +08:00
|
|
|
</div>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
<!-- 分页 -->
|
2021-02-11 21:31:41 +08:00
|
|
|
<nav class="mt-5" th:replace="index::pagination"></nav>
|
2021-01-17 11:14:50 +08:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- 尾部 -->
|
2021-02-11 21:31:41 +08:00
|
|
|
<footer class="bg-dark" th:replace="index::footer"></footer>
|
2021-01-17 11:14:50 +08:00
|
|
|
</div>
|
|
|
|
|
2021-02-11 21:31:41 +08:00
|
|
|
<script th:src="@{/js/jquery-3.1.0.min.js}"></script>
|
|
|
|
<script th:src="@{/js/popper.min.js}"></script>
|
|
|
|
<script th:src="@{/js/bootstrap.min.js}"></script>
|
|
|
|
<script th:src="@{/js/global.js}"></script>
|
2021-01-17 11:14:50 +08:00
|
|
|
</body>
|
|
|
|
</html>
|