18 lines
610 B
HTML
18 lines
610 B
HTML
<!DOCTYPE HTML>
|
|
<html xmlns:th="http://www.thymeleaf.org">
|
|
<head th:fragment="headerfiles">
|
|
<meta charset="UTF-8"/>
|
|
</head>
|
|
<body>
|
|
<div th:fragment="projectDashboard (project)" 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="projects/fragments/projectStatusFragment :: projectStatus(projectStatus=${project.status})"/>
|
|
</div>
|
|
<div class="col col-10 text-right">
|
|
<h7 class="service-heading" th:text="${project.title}"> title</h7>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |