source: src/main/resources/templates/album.html@ ee0e297

Last change on this file since ee0e297 was 276a8b6, checked in by KostaFortumanov <kfortumanov@…>, 3 years ago

post pagination

  • Property mode set to 100644
File size: 2.9 KB
Line 
1<!DOCTYPE html>
2<html lang="en" xmlns:th="http://www.w3.org/1999/xhtml">
3<head>
4 <meta charset="UTF-8"/>
5 <meta name="viewport" content="width=device-width, initial-scale=1"/>
6 <title>Album</title>
7 <!-- Bootstrap core CSS -->
8 <link href="css/bootstrap.min.css" rel="stylesheet"/>
9</head>
10<body>
11<header th:replace="common/navbar :: navbar"></header>
12<hr class="dropdown-divider">
13<br/>
14<br/>
15<main>
16 <p th:if="${noPosts}">No posts</p>
17 <div th:unless="${noPosts}" class="album py-5 bg-light">
18
19 <div class="container">
20 <div class="row">
21 <div class="col-md-2">
22 <label class="form-label" for="sortBy">Sort By</label>
23 <select class="input-group-text" id="sortBy">
24 <option value="id">Default</option>
25 <option value="title">Title</option>
26 <option value="dateDue">Date due</option>
27 <option value="fundsNeeded">Funds needed</option>
28 </select>
29 </div>
30 <div class="col-md-2">
31 <label class="form-label" for="order">Order</label>
32 <select class="input-group-text" id="order">
33 <option value="asc">Ascending</option>
34 <option value="desc">Descending</option>
35 </select>
36 </div>
37 </div>
38 <br>
39 <div class="row row-cols-1 row-cols-sm-2 row-cols-md-3 g-3">
40 <div class="col" th:each="post : ${postList}">
41 <div class="card shadow-sm">
42 <img class="card-img" style="object-fit: contain" width="100%" height="225"
43 th:src="${post.imagesPath[0]}">
44 <div class="card-body overflow-hidden">
45 <h4 th:text="${post.title}" style="height: 60px"></h4>
46 <p class="card-text text-truncate" style="height: 45px" th:text="${post.description}"></p>
47 <div class="d-flex justify-content-between align-items-center">
48 <div class="btn-group">
49 <a class="btn btn-sm btn-outline-secondary" th:href="@{/post(postid=${post.id})}">Open</a>
50 </div>
51 <span class="text-muted">Date due: <small th:text="${post.dateDue}"></small></span>
52 </div>
53 </div>
54 </div>
55 </div>
56 </div>
57 </div>
58 <hr class="ui-menu-divider"/>
59 <nav>
60 <div id="pagination"></div>
61 </nav>
62 </div>
63
64</main>
65<script src="/js/bootstrap.min.js"></script>
66<script id="helper" src="/js/pagination.js" th:data-pages="${totalPages}"></script>
67</body>
68</html>
Note: See TracBrowser for help on using the repository browser.