22 lines
658 B
HTML
22 lines
658 B
HTML
<!DOCTYPE HTML>
|
|
<html xmlns:th="http://www.thymeleaf.org">
|
|
<head th:fragment="headerfiles">
|
|
<meta charset="UTF-8"/>
|
|
</head>
|
|
<body>
|
|
<div th:fragment="confLine (conference)" class="row text-left paper-row" style="background-color: white;">
|
|
<div class="col">
|
|
<a th:href="@{'conference?id='+${conference.id}}">
|
|
<span class="h6" th:text="${conference.title}"/>
|
|
</a>
|
|
<input class="id-class" type="hidden"/>
|
|
<a class="remove-paper pull-right d-none"
|
|
data-confirm="Удалить статью?">
|
|
<i class="fa fa-trash" aria-hidden="true"></i>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
</body>
|
|
</html> |