gbu footer

master
Boris Voropaev 2024-01-31 12:25:21 +03:00
parent b140299c0a
commit 512822e068
7 changed files with 117 additions and 3 deletions

View File

@ -352,6 +352,10 @@
"replace": "src/app/_modules/layout/right-content/right-content.component.ts",
"with": "src/gbu/component/layout/right-content/right-content.component.ts"
},
{
"replace": "src/app/_modules/layout/footer/footer.component.ts",
"with": "src/gbu/component/layout/footer/footer.component.ts"
},
{
"replace": "src/app/_modules/pages/menu/slider-menu/slider-menu.component.ts",
"with": "src/gbu/component/pages/menu/slider-menu/slider-menu.component.ts"
@ -415,9 +419,17 @@
"replace": "src/app/_modules/layout/right-content/right-content.component.ts",
"with": "src/gbu/component/layout/right-content/right-content.component.ts"
},
{
"replace": "src/app/_modules/layout/footer/footer.component.ts",
"with": "src/gbu/component/layout/footer/footer.component.ts"
},
{
"replace": "src/app/_modules/pages/menu/slider-menu/slider-menu.component.ts",
"with": "src/gbu/component/pages/menu/slider-menu/slider-menu.component.ts"
},
{
"replace": "src/app/_modules/registries/registry/entries/entry/registry-entry.component.ts",
"with": "src/gbu/component/registries/registry/entries/entry/registry-entry.component.ts"
}
],
"inlineStyleLanguage": "scss",

View File

@ -0,0 +1,25 @@
<div class="footer layout-corral">
<div class="footer-contact-left">
<a routerLink="/"><img src="assets/images/logo_gbu.png"></a>
<div class="footer-contact-left-name">
<span>Государственное бюджетное<br>учреждение города Москвы</span><br>
<strong>«Жилищник Таганского района»</strong>
</div>
<div class="footer-contact-left-license">
Все материалы сайта доступны по лицензии Creative Commons Attribution 3.0 при условии ссылки на первоисточник.
</div>
</div>
<div class="footer-contact-right">
<a href="">Политика обработки персональных данных</a>
<a href="">Техническая поддержка</a>
<a href="">Соглашение о пользовании информационными системами и ресурсами города Москвы</a>
</div>
<div class="footer-down">
<div>
© 20172024, ГБУ «Жилищник»
</div>
<div>
Работает на платформе НИР
</div>
</div>
</div>

View File

@ -0,0 +1,13 @@
import {Component} from '@angular/core';
@Component({
selector: 'footer',
templateUrl: 'footer.component.html',
styleUrls: ['footer.component.scss']
})
export class FooterComponent {
constructor() {
}
}

View File

@ -25,6 +25,7 @@
<right-content *ngIf="currentPage"></right-content>
</div>
</div>
<footer class="space"></footer>
<!-- <footer class="space"></footer> -->
</div>
<fullscreen-gallery></fullscreen-gallery>

View File

@ -141,7 +141,7 @@ jumbotron{
.content-grid{
display: flex;
justify-content: space-between;
margin-bottom: 120px;
margin-bottom: 48px;
left-content{
display: none;
@ -201,7 +201,70 @@ jumbotron{
}
footer{
display: none;
.footer{
display: flex;
justify-content: space-between;
flex-wrap: wrap;
padding-inline: 48px;
background-color: #000;
padding-block: 32px;
color: #ACACAC;
.footer-contact-left{
display: flex;
justify-content: flex-start;
align-items: center;
gap: 8px;
padding-bottom: 24px;
flex-wrap: wrap;
flex-basis: 40%;
margin-right: 16px;
flex-grow: 1;
a{
width: 91px;
height: 96px;
img{
width: 100%;
}
}
.footer-contact-left-name{
strong{
color: #FFF;
}
}
.footer-contact-left-license{
font-family: Golos;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 21px; /* 150% */
}
};
.footer-contact-right{
display: flex;
flex-direction: column;
justify-content: center;
align-items: flex-start;
gap: 16px;
padding-bottom: 24px;
flex-basis: 40%;
margin-left: 16px;
flex-grow: 1;
a{
color: #ACACAC;
}
}
.footer-down{
display: flex;
flex-grow: 1;
flex-basis: 100%;
justify-content: space-between;
padding-top: 24px;
border-top: 1px solid #6A6868;
}
}
}

View File

@ -4,7 +4,7 @@
<base href="/" />
<title>ГБУ Жилищник</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no, shrink-to-fit=no" />
<link rel="icon" type="image/x-icon" href="/assets/images/favicon.png" />
<link rel="icon" type="image/x-icon" href="/assets/images/logo_gbu.png" />
</head>
<body>
<app></app>