33 lines
1.0 KiB
HTML
33 lines
1.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en"
|
|
xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
|
|
layout:decorator="default" xmlns:th="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
</head>
|
|
<body>
|
|
|
|
<div class="container" layout:fragment="content">
|
|
<!-- Services -->
|
|
<section id="services">
|
|
<div class="container">
|
|
<div class="col-lg-12 text-center">
|
|
<h2 class="section-heading text-uppercase">Статьи</h2>
|
|
<div th:replace="papers/fragments/paperNavigationFragment"/>
|
|
</div>
|
|
<div class="row justify-content-center" id="dashboard">
|
|
<th:block th:each="paper : ${papers}">
|
|
<div th:replace="papers/fragments/paperDashboardFragment :: titleLine(paper=${paper})"/>
|
|
</th:block>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
<script src="/js/papers.js"></script>
|
|
<script>
|
|
$(document).ready(function () {
|
|
showPaperDashboard("#dashboard");
|
|
});
|
|
</script>
|
|
</div>
|
|
|
|
</body>
|
|
</html> |