Skip to content

Commit

Permalink
[Hexlet#153] add footer
Browse files Browse the repository at this point in the history
  • Loading branch information
amirhraj committed Jun 5, 2023
1 parent 495e099 commit bee6b0f
Show file tree
Hide file tree
Showing 17 changed files with 17 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/main/resources/templates/account/acc-info.html
Original file line number Diff line number Diff line change
Expand Up @@ -54,5 +54,6 @@ <h5 class="card-title mb-1">Workspaces</h5>
</tbody>
</table>
</main>
<footer th:replace="~{fragments/footer :: foot}"></footer>
</body>
</html>
1 change: 1 addition & 0 deletions src/main/resources/templates/account/pass-update.html
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,6 @@
</div>
</div>
</main>
<footer th:replace="~{fragments/footer :: foot}"></footer>
</body>
</html>
1 change: 1 addition & 0 deletions src/main/resources/templates/account/prof-update.html
Original file line number Diff line number Diff line change
Expand Up @@ -48,5 +48,6 @@
</div>
</div>
</main>
<footer th:replace="~{fragments/footer :: foot}"></footer>
</body>
</html>
1 change: 1 addition & 0 deletions src/main/resources/templates/account/signup.html
Original file line number Diff line number Diff line change
Expand Up @@ -84,5 +84,6 @@
</div>
</div>
</main>
<footer th:replace="~{fragments/footer :: foot}"></footer>
</body>
</html>
1 change: 1 addition & 0 deletions src/main/resources/templates/create-workspace.html
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,6 @@
</div>
</div>
</main>
<footer th:replace="~{fragments/footer :: foot}"></footer>
</body>
</html>
1 change: 1 addition & 0 deletions src/main/resources/templates/error-general.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,6 @@
<div class="alert alert-danger">
<span>Во время работы произошла ошибка. Попробуйте позже.</span>
</div>
<footer th:replace="~{fragments/footer :: foot}"></footer>
</body>
</html>
3 changes: 1 addition & 2 deletions src/main/resources/templates/fragments/footer.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<body>
<footer th:fragment="foot" class="footer fixed-bottom d-flex p-3 ">
<footer th:fragment="foot" class="bg-dark text-light fixed-bottom">
<div class="container-xl">
<div class="row justify-content-lg-around">
<div class="col-sm-6 col-md-3 col-lg-auto">
Expand Down Expand Up @@ -92,6 +92,5 @@
</div>
</div>
</footer>

</body>
</html>
1 change: 1 addition & 0 deletions src/main/resources/templates/login.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,6 @@
</div>
</div>
</main>
<footer th:replace="~{fragments/footer :: foot}"></footer>
</body>
</html>
1 change: 1 addition & 0 deletions src/main/resources/templates/widget/report-typo-error.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,6 @@
<div class="alert alert-danger">
<span>Во время отправки произошла ошибка. Попробуйте позже.</span>
</div>
<footer th:replace="~{fragments/footer :: foot}"></footer>
</body>
</html>
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@
<span>Сообщение об ошибке успешно отправлено. Спасибо!</span>
</div>
</body>
<footer th:replace="~{fragments/footer :: foot}"></footer>
</html>
1 change: 1 addition & 0 deletions src/main/resources/templates/widget/typo-form.html
Original file line number Diff line number Diff line change
Expand Up @@ -45,5 +45,6 @@
}
};
</script>
<footer th:replace="~{fragments/footer :: foot}"></footer>
</body>
</html>
1 change: 1 addition & 0 deletions src/main/resources/templates/workspace/wks-info.html
Original file line number Diff line number Diff line change
Expand Up @@ -54,5 +54,6 @@ <h5 class="card-title" th:text="*{name}"></h5>
</div>
</div>
</main>
<footer th:replace="~{fragments/footer :: foot}"></footer>
</body>
</html>
1 change: 1 addition & 0 deletions src/main/resources/templates/workspace/wks-settings.html
Original file line number Diff line number Diff line change
Expand Up @@ -50,5 +50,6 @@
</div>
</div>
</main>
<footer th:replace="~{fragments/footer :: foot}"></footer>
</body>
</html>
1 change: 1 addition & 0 deletions src/main/resources/templates/workspace/wks-typos.html
Original file line number Diff line number Diff line change
Expand Up @@ -168,5 +168,6 @@
</div>
</div>
</main>
<footer th:replace="~{fragments/footer :: foot}"></footer>
</body>
</html>
1 change: 1 addition & 0 deletions src/main/resources/templates/workspace/wks-update.html
Original file line number Diff line number Diff line change
Expand Up @@ -59,5 +59,6 @@
</div>
</div>
</main>
<footer th:replace="~{fragments/footer :: foot}"></footer>
</body>
</html>
1 change: 1 addition & 0 deletions src/main/resources/templates/workspace/wks-users.html
Original file line number Diff line number Diff line change
Expand Up @@ -135,5 +135,6 @@
</div>
</div>
</main>
<footer th:replace="~{fragments/footer :: foot}"></footer>
</body>
</html>
1 change: 1 addition & 0 deletions src/main/resources/templates/workspaces.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,6 @@ <h5 class="card-title" th:text="*{name}"></h5>
</div>
</div>
</main>
<footer th:replace="~{fragments/footer :: foot}"></footer>
</body>
</html>

0 comments on commit bee6b0f

Please sign in to comment.