2018-09-27 12:11:25 +04:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en"
|
|
|
|
xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
|
2018-12-18 18:05:30 +04:00
|
|
|
layout:decorator="default" xmlns:th="http://www.w3.org/1999/xhtml">
|
2018-09-27 12:11:25 +04:00
|
|
|
<head>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<div class="container" layout:fragment="content">
|
|
|
|
<section id="services">
|
|
|
|
<div class="container">
|
2018-11-14 17:04:40 +04:00
|
|
|
<div class="col-lg-12 text-center">
|
|
|
|
<h2 class="section-heading text-uppercase">Статьи</h2>
|
2018-12-18 18:05:30 +04:00
|
|
|
<div th:replace="papers/fragments/paperNavigationFragment"/>
|
2018-09-27 12:11:25 +04:00
|
|
|
</div>
|
2018-11-14 15:15:23 +04:00
|
|
|
<div class="row justify-content-center" id="dashboard">
|
2018-12-18 19:23:15 +04:00
|
|
|
<th:block th:each="paper : ${papers}">
|
|
|
|
<div th:replace="papers/fragments/paperDashboardFragment :: titleLine(paper=${paper})"/>
|
|
|
|
</th:block>
|
2018-09-27 12:11:25 +04:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|