28 lines
1.2 KiB
HTML
28 lines
1.2 KiB
HTML
<!DOCTYPE HTML>
|
|
<html xmlns:th="http://www.thymeleaf.org">
|
|
<head th:fragment="headerfiles">
|
|
<meta charset="UTF-8"/>
|
|
</head>
|
|
<body>
|
|
<div th:fragment="paperDashboard (paper)" class="col-12 col-sm-12 col-md-12 col-lg-4 col-xl-3 dashboard-card">
|
|
<div class="row">
|
|
<div class="col-2">
|
|
<span th:replace="papers/fragments/paperStatusFragment :: paperStatus(paperStatus=${paper.status}, title=${paper.title})"/>
|
|
</div>
|
|
<div class="col col-10 text-right">
|
|
<p th:if="${paper.url!=null and paper.url!=''}"><a target="_blank" class="externalLink"
|
|
th:href="${paper.url}"><i
|
|
class="fa fa-external-link fa-1x"
|
|
aria-hidden="true"></i></a></p>
|
|
<p th:unless="${paper.url!=null and paper.url!=''}"><i class="fa fa-fw fa-2x" aria-hidden="true"></i></p>
|
|
<a th:href="'paper?id='+${paper.id}">
|
|
<h7 class="service-heading" th:text="${paper.title}"> title</h7>
|
|
</a>
|
|
<p class="text-muted" th:text="${paper.authorsString}">authors</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
</body>
|
|
</html> |