Changeset 0fb69cc for src/main/resources/templates/home.html
- Timestamp:
- 02/06/23 20:10:28 (22 months ago)
- Branches:
- master
- Children:
- d09caa7
- Parents:
- b5ce654
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/resources/templates/home.html
rb5ce654 r0fb69cc 196 196 </style> 197 197 <div xmlns:th="http://www.thymeleaf.org"> 198 <h1 style="color: white">Нови Филмови</h1> 198 199 <div class="main"> 199 200 <div th:each="film : ${films}" class="container"> … … 221 222 </div> 222 223 </div> 223 </div> 224 </div> 224 225 </div> 226 <h1 style="color: white">Следни Настани:</h1> 227 <div class="main"> 228 <div th:each="event: ${events}" class="container"> 229 <div class="card"> 230 <div class="imgBx"> 231 <img th:src="@{${event.getImg_url()}}"/> 232 </div> 233 <div class="contentBx"> 234 <h2 th:text="${event.getTheme()}"></h2> 235 <div class="size"> 236 <h3>Start Date :</h3> 237 <span th:text="${event.getStart_date()}"></span> 238 </div> 239 <div class="color"> 240 <h3>Duration:</h3> 241 <span th:text="${event.getDuration()}"></span> 242 </div> 243 <form th:action="@{'/home/getFilm/{id}' (id=${event.getId_event()})}" 244 th:method="GET"> 245 <button class="button" type="submit">Details</button> 246 </form> 247 </div> 248 </div> 249 </div> 250 </div> 251 </div>
Note:
See TracChangeset
for help on using the changeset viewer.