-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #310 from shamshaev/fix-issue-#153-add-footer
[#153] Add footer to website templates
- Loading branch information
Showing
24 changed files
with
187 additions
and
189 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
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
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
Binary file not shown.
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 |
---|---|---|
@@ -1,26 +1,19 @@ | ||
<!DOCTYPE html> | ||
<html lang="en" xmlns:th="http://www.thymeleaf.org"> | ||
<head th:replace="~{fragments/header :: head}"></head> | ||
<body class="d-flex min-vh-100"> | ||
<nav th:replace="~{fragments/panels :: mainNavbarTop}"></nav> | ||
<div class="container-fluid d-flex flex-column p-0 m-0"> | ||
<div class=" bg-light mx-auto mt-5"> | ||
<main class="bg-light p-3"> | ||
<html lang="en" xmlns:th="http://www.thymeleaf.org" | ||
xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout" | ||
layout:decorate="~{layout}"> | ||
|
||
<div layout:fragment="content"> | ||
<div class="mx-auto mt-5"> | ||
<main class="p-3"> | ||
<div class="container p-0"> | ||
<h1 class="my-4">О проекте</h1> | ||
<p class="display-6">Добро пожаловать в open-source проект Hexlet-Correction</p> | ||
<p> | ||
Сервис для уведомления владельцев сайтов об ошибках и опечатках. | ||
После интеграции с сайтом посетители имеют возможность выделить ошибку | ||
или опечатку и сообщить об этом администратору. Проект работает на Java. | ||
</p> | ||
<p>Задачи можно обсудить в сообществе | ||
<a href="https://t.me/hexletcommunity/12">telegram</a> | ||
<h1 class="my-4" th:text="#{text.about-header}"></h1> | ||
<p class="display-6" th:text="#{text.about-welcome}"></p> | ||
<p th:text="#{text.about-description}"></p> | ||
<p th:inline="text">[[#{text.about-community}]] <a href="https://t.me/hexletcommunity/12">telegram</a> | ||
</p> | ||
</div> | ||
</main> | ||
</div> | ||
<footer th:replace="~{fragments/footer :: footer}"></footer> | ||
</div> | ||
</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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<!DOCTYPE html> | ||
<html lang="en" xmlns:th="http://www.thymeleaf.org" | ||
xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"> | ||
<head th:replace="~{fragments/header :: head}"></head> | ||
<body style="padding-top: 4.5rem" class="d-flex flex-column min-vh-100"> | ||
<nav th:replace="~{fragments/panels :: mainNavbarTop}"></nav> | ||
<main class="container mb-5"> | ||
<div layout:fragment="content"> | ||
</div> | ||
</main> | ||
<footer th:replace="~{fragments/footer :: footer}"></footer> | ||
</body> | ||
</html> |
Oops, something went wrong.