diff --git a/angular.json b/angular.json index 4b40b10..2da9089 100644 --- a/angular.json +++ b/angular.json @@ -344,14 +344,14 @@ "replace": "src/app/_modules/layout/header/header.component.ts", "with": "src/gbu/component/layout/header/header.component.ts" }, - { - "replace": "src/app/_modules/layout/footer/footer.component.ts", - "with": "src/gbu/component/layout/footer/footer.component.ts" - }, { "replace": "src/app/_modules/layout/jumbotron/jumbotron.component.ts", "with": "src/gbu/component/layout/jumbotron/jumbotron.component.ts" }, + { + "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/pages/menu/slider-menu/slider-menu.component.ts", "with": "src/gbu/component/pages/menu/slider-menu/slider-menu.component.ts" @@ -403,14 +403,14 @@ "replace": "src/app/_modules/layout/header/header.component.ts", "with": "src/gbu/component/layout/header/header.component.ts" }, - { - "replace": "src/app/_modules/layout/footer/footer.component.ts", - "with": "src/gbu/component/layout/footer/footer.component.ts" - }, { "replace": "src/app/_modules/layout/jumbotron/jumbotron.component.ts", "with": "src/gbu/component/layout/jumbotron/jumbotron.component.ts" }, + { + "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/pages/menu/slider-menu/slider-menu.component.ts", "with": "src/gbu/component/pages/menu/slider-menu/slider-menu.component.ts" diff --git a/src/app/_modules/publications/list/item/publications-list-item.component.html b/src/app/_modules/publications/list/item/publications-list-item.component.html index 28a7cc7..a156503 100644 --- a/src/app/_modules/publications/list/item/publications-list-item.component.html +++ b/src/app/_modules/publications/list/item/publications-list-item.component.html @@ -8,7 +8,7 @@ -
{{entry|json}}
\ No newline at end of file
+
\ No newline at end of file
diff --git a/src/gbu/component/layout/footer/footer.component.scss b/src/gbu/component/layout/footer/footer.component.scss
deleted file mode 100644
index e69de29..0000000
diff --git a/src/gbu/component/layout/footer/footer.component.ts b/src/gbu/component/layout/footer/footer.component.ts
deleted file mode 100644
index 1b7eb58..0000000
--- a/src/gbu/component/layout/footer/footer.component.ts
+++ /dev/null
@@ -1,36 +0,0 @@
-import {Component} from '@angular/core';
-import {AuthenticationService} from "@app/_services";
-import {PagesService} from "@app/_services/pages.service";
-
-@Component({
- selector: 'footer',
- templateUrl: 'footer.component.html',
- styleUrls: ['footer.component.scss']
-})
-export class FooterComponent {
-
- public year = new Date().getFullYear();
-
- constructor(
- public authService: AuthenticationService,
- public pagesService: PagesService) {
- }
-
- get isLoggedIn() {
- return this.authService.isLoggedIn;
- }
-
- ngOnInit() {
- }
-
- login() {
- this.authService.popup('login');
- }
-
- get isRusPage(){
- return this.pagesService.rootPage.slug ===""
- }
-
-
-
-}
diff --git a/src/gbu/component/layout/grid/grid.component.html b/src/gbu/component/layout/grid/grid.component.html
index 91ef665..63649b8 100644
--- a/src/gbu/component/layout/grid/grid.component.html
+++ b/src/gbu/component/layout/grid/grid.component.html
@@ -6,14 +6,14 @@