32 lines
1.0 KiB
HTML
32 lines
1.0 KiB
HTML
|
|
<!DOCTYPE html>
|
|
<html lang="en"
|
|
xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
|
|
layout:decorate="~{default}">
|
|
<head>
|
|
</head>
|
|
<body>
|
|
<div layout:fragment="content">
|
|
<div class="text-center">
|
|
<div class="dropdown text-center mx-auto w-75">
|
|
<div class="text-center mt-3">
|
|
<button class="btn btn-secondary dropdown-toggle mb-3 w-100" type="button" data-bs-toggle="dropdown" aria-expanded="false">
|
|
Выбор темы
|
|
</button>
|
|
<ul class="dropdown-menu w-100" >
|
|
<li th:each="topic: ${topics}">
|
|
<a class="dropdown-item" th:href="@{/feed/{id}(id=${topic.id})}" th:text="${topic.name + '. ' + topic.description}">
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<div layout:fragment="contentFeed"></div>
|
|
|
|
|
|
</div>
|
|
</div>
|
|
</body>
|
|
|
|
|
|
</html> |