27 lines
1004 B
HTML
27 lines
1004 B
HTML
<!DOCTYPE HTML>
|
|
<html xmlns:th="http://www.thymeleaf.org">
|
|
<head th:fragment="headerfiles">
|
|
<meta charset="UTF-8"/>
|
|
</head>
|
|
<body>
|
|
<div th:fragment="confDashboard (conference)" class="col-12 col-sm-12 col-md-12 col-lg-4 col-xl-3 dashboard-card">
|
|
<div class="row">
|
|
<div class="col-2">
|
|
|
|
</div>
|
|
<div class="col col-10 text-right">
|
|
<p th:if="${conference.url!=null and conference.url!=''}"><a target="_blank" th:href="${conference.url}"><i
|
|
class="fa fa-external-link fa-1x"
|
|
aria-hidden="true"></i></a></p>
|
|
<p th:unless="${conference.url!=null and conference.url!=''}"><i class="fa fa-fw fa-2x"
|
|
aria-hidden="true"></i></p>
|
|
<a th:href="'conference?id='+${conference.id}">
|
|
<h7 class="service-heading" th:text="${conference.title}"> title</h7>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
</body>
|
|
</html> |