mirror of
https://github.com/Mueller-Patrick/Betterzon.git
synced 2024-11-22 14:23:57 +00:00
footer component adjusted.
This commit is contained in:
parent
14b943b64a
commit
6c7b28b4cb
|
@ -1,26 +1,31 @@
|
||||||
<div class="bottom-bar-wrapper">
|
<footer class="footer text-center">
|
||||||
<div class="folge-uns-item">
|
<div class="container">
|
||||||
<p><span id="folge">FOLGE</span><span id="uns">UNS</span></p>
|
<div class="row">
|
||||||
</div>
|
<!-- Footer Location-->
|
||||||
<div class="link-items">
|
<div class="col-lg-4 mb-5 mb-lg-0">
|
||||||
<ul style="list-style-type:none" class="footer-links">
|
<h4 class="text-uppercase mb-4">Location</h4>
|
||||||
<li><a href="https://github.com/Mueller-Patrick/Betterzon">GiT</a></li>
|
<p class="lead mb-0">
|
||||||
<li><a href="https://blog.betterzon.xyz/">BLOG</a></li>
|
70376 Stuttgart
|
||||||
<li><a href="https://github.com/Mueller-Patrick/Betterzon/wiki">Wiki</a></li>
|
<br />
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<div id="footer-line">
|
|
||||||
|
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<!-- Footer Social Icons-->
|
||||||
|
<div class="col-lg-4 mb-5 mb-lg-0">
|
||||||
|
<h4 class="text-uppercase mb-4">FOLGE UNS</h4>
|
||||||
|
<a class="btn btn-outline-light btn-social mx-1" href="#!"><i class="fab fa-fw fa-github"></i></a>
|
||||||
|
<a class="btn btn-outline-light btn-social mx-1" href="#!"><i class="fab fa-fw fa-twitter"></i></a>
|
||||||
|
<a class="btn btn-outline-light btn-social mx-1" href="#!"><i class="fab fa-fw fa-linkedin-in"></i></a>
|
||||||
|
<a class="btn btn-outline-light btn-social mx-1" href="#!"><i class="fab fa-fw fa-dribbble"></i></a>
|
||||||
|
</div>
|
||||||
|
<!-- Footer About Text-->
|
||||||
|
<div class="col-lg-4">
|
||||||
|
<h4 class="text-uppercase mb-4">SOME INFO</h4>
|
||||||
|
<p class="lead mb-0">
|
||||||
|
text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="bottom-logo">
|
</footer>
|
||||||
<p><span id="better">BETTER</span><span id="zon">ZON</span></p>
|
|
||||||
</div>
|
|
||||||
<div class="bottom-info">
|
|
||||||
<ul style="list-style-type:none" class="footer-links">
|
|
||||||
<li><a>DATENSCHUTZERKLÄRUNG</a></li>
|
|
||||||
<li><a>IMPRESSUM</a></li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,3 @@
|
||||||
|
<div class="copyright py-4 text-center text-white">
|
||||||
|
<div class="container"><small>Copyright © Your Website 2021</small></div>
|
||||||
|
</div>
|
|
@ -0,0 +1,25 @@
|
||||||
|
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||||
|
|
||||||
|
import { CopyrightComponent } from './copyright.component';
|
||||||
|
|
||||||
|
describe('CopyrightComponent', () => {
|
||||||
|
let component: CopyrightComponent;
|
||||||
|
let fixture: ComponentFixture<CopyrightComponent>;
|
||||||
|
|
||||||
|
beforeEach(async () => {
|
||||||
|
await TestBed.configureTestingModule({
|
||||||
|
declarations: [ CopyrightComponent ]
|
||||||
|
})
|
||||||
|
.compileComponents();
|
||||||
|
});
|
||||||
|
|
||||||
|
beforeEach(() => {
|
||||||
|
fixture = TestBed.createComponent(CopyrightComponent);
|
||||||
|
component = fixture.componentInstance;
|
||||||
|
fixture.detectChanges();
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should create', () => {
|
||||||
|
expect(component).toBeTruthy();
|
||||||
|
});
|
||||||
|
});
|
15
Frontend/src/app/components/copyright/copyright.component.ts
Normal file
15
Frontend/src/app/components/copyright/copyright.component.ts
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
import { Component, OnInit } from '@angular/core';
|
||||||
|
|
||||||
|
@Component({
|
||||||
|
selector: 'app-copyright',
|
||||||
|
templateUrl: './copyright.component.html',
|
||||||
|
styleUrls: ['./copyright.component.css']
|
||||||
|
})
|
||||||
|
export class CopyrightComponent implements OnInit {
|
||||||
|
|
||||||
|
constructor() { }
|
||||||
|
|
||||||
|
ngOnInit(): void {
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user