forked from Hexlet/hexlet-correction
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Hexlet#153 add footer in login and signup]
- Loading branch information
Showing
4 changed files
with
189 additions
and
182 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -84,6 +84,6 @@ | |
</div> | ||
</div> | ||
</main> | ||
|
||
<footer th:replace="~{fragments/footer :: foot}"></footer> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
<!DOCTYPE html> | ||
<html lang="en" xmlns:th="http://www.thymeleaf.org"> | ||
<body> | ||
<footer th:fragment="foot" class="footer fixed-bottom d-flex p-3 "> | ||
<div class="container-xl"> | ||
<div class="row justify-content-lg-around"> | ||
<div class="col-sm-6 col-md-3 col-lg-auto"> | ||
<a class="text-dark px-0 py-0 text-decoration-none " href="https://ru.hexlet.io"> | ||
<p class="h3 mb-2 text-light">© Hexlet</p> | ||
</a> | ||
<ul class="nav flex-column"> | ||
<li class="nav-item"> | ||
<a class="nav-link px-0 py-1 text-light" href="https://sicp.hexlet.io/ru/pages/about"> | ||
О проекте | ||
</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link px-0 py-1 text-light" href="https://github.com/Hexlet/hexlet-correction" | ||
target="_blank"> | ||
Исходный код | ||
</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link px-0 py-1 text-light" href="https://t.me/hexletcommunity/12" | ||
target="_blank"> | ||
Telegram Hexlet канал Волонтеры | ||
</a> | ||
</li> | ||
</ul> | ||
</div> | ||
<div class="col-sm-6 col-md-3 col-lg-auto"> | ||
<p class="h5 mb-3">Помощь</p> | ||
<ul class="nav flex-column"> | ||
<li class="nav-item"> | ||
<a class="nav-link px-0 py-1 text-light" href="https://ru.hexlet.io/blog"> | ||
Блог | ||
</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link px-0 py-1 text-light" href="https://ru.hexlet.io/knowledge"> | ||
База знаний | ||
</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link px-0 py-1 text-light" | ||
href="https://ru.hexlet.io/pages/recommended-books"> | ||
Рекомендуемые книги | ||
</a> | ||
</li> | ||
</ul> | ||
</div> | ||
<div class="col-sm-6 col-md-3 col-lg-auto"> | ||
<p class="h5 mb-3">Другие open-source проекты</p> | ||
<ul class="nav flex-column"> | ||
<li class="nav-item"> | ||
<a class="nav-link px-0 py-1 text-light" href="https://github.com/Hexlet/hexlet-cv"> | ||
Хекслет-резюме | ||
</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link px-0 py-1 text-light" href="https://github.com/Hexlet/hexlet-editor"> | ||
Хекслет-редактор | ||
</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link px-0 py-1 text-light" href="https://github.com/Hexlet/hexlet-friends"> | ||
Друзья Хекслета | ||
</a> | ||
</li> | ||
</ul> | ||
</div> | ||
<div class="col-sm-6 col-md-3 col-lg-auto"> | ||
<p class="h5 mb-3">Дополнительно</p> | ||
<ul class="nav flex-column"> | ||
<li class="nav-item"> | ||
<a class="nav-link px-0 py-1 text-light" href="https://ru.code-basics.com/"> | ||
Code Basics | ||
</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link px-0 py-1 text-light" href="https://codebattle.hexlet.io/"> | ||
Кодбаттл | ||
</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link px-0 py-1 text-light" href="https://guides.hexlet.io/"> | ||
Гайды Хекслета | ||
</a> | ||
</li> | ||
</ul> | ||
</div> | ||
</div> | ||
</div> | ||
</footer> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters