34 lines
1.2 KiB
HTML
34 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html xmlns:th="https://www.thymeleaf.org"
|
|
th:replace="~{modules/layouts/layout :: layout(_head = null,_content = ~{::content},_title = ${douban != null and douban.spec != null ? douban.spec.name + ' - ' + site.title : title + ' - ' + site.title})}">
|
|
|
|
<th:block th:fragment="content">
|
|
|
|
<div class="page_main uk-width-2-3@m">
|
|
|
|
<th:block th:replace="~{modules/header}" />
|
|
|
|
<div id="pjax-container">
|
|
<div class="blog_list douban_page douban_detail_page">
|
|
<div class="blog_list_inner" uk-height-viewport="offset-top: true">
|
|
|
|
<div id="post_item" class="moment_list douban_list">
|
|
<th:block th:replace="~{macro/douban-item :: douban-item(${douban})}"></th:block>
|
|
<th:block th:if="${douban == null or douban.spec == null}">
|
|
<th:block th:replace="~{macro/tpl/content-none}" />
|
|
</th:block>
|
|
</div>
|
|
|
|
<div id="comment_form_reset"></div>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<th:block th:replace="~{modules/footer-main}" />
|
|
|
|
</div>
|
|
</th:block>
|
|
|
|
</html>
|