-
Notifications
You must be signed in to change notification settings - Fork 3
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 #3 from sebenns/update-phone
Update phone
- Loading branch information
Showing
2 changed files
with
23 additions
and
8 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
|
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 |
---|---|---|
|
@@ -26,20 +26,28 @@ <h6 class="mb-2 mb-md-4">{{ lang.get("FOOTER_CO_WORKING_PLACE") }}</h6> | |
<li>55131 Mainz</li> | ||
</ul> | ||
<ul class="list-unstyled"> | ||
<li>{{ lang.get("PHONE") }}: <a href="tel:+49-641-992-8145">+49-641-992-8145</a></li> | ||
<li>{{ lang.get("FAX") }}: <a href="fax:+49-641-991-9824">+49-641-991-9824</a></li> | ||
<li>{{ lang.get("PHONE") }}: <a href="tel:+49-641-309-2467">+49-641-309-2467</a></li> | ||
</ul> | ||
</div> | ||
</div> | ||
<div class="col-12 col-md-4 col-lg-3 offset-md-0 offset-lg-1 mt-4 mt-md-0"> | ||
<div class="text-container"> | ||
<h6 class="mb-3 mb-md-4">{{ lang.get("FOOTER_PROJECT_OVERVIEW_TITLE") }}</h6> | ||
<div class="row mb-2" *ngFor="let project of projectList"> | ||
<div | ||
class="row mb-2" | ||
*ngFor="let project of projectList"> | ||
<div class="col-4 d-flex align-items-center"> | ||
<img class="img-thumbnail" [src]="project.imageSrc" [alt]="project.name" /> | ||
<img | ||
class="img-thumbnail" | ||
[src]="project.imageSrc" | ||
[alt]="project.name" /> | ||
</div> | ||
<div class="col-6 col-md"> | ||
<a target="_blank" [href]="project.href">{{ project.name }}</a> | ||
<a | ||
target="_blank" | ||
[href]="project.href" | ||
>{{ project.name }}</a | ||
> | ||
</div> | ||
</div> | ||
</div> | ||
|
@@ -50,17 +58,23 @@ <h6 class="mb-3 mb-md-4">{{ lang.get("FOOTER_PROJECT_OVERVIEW_TITLE") }}</h6> | |
<div class="col-12"> | ||
<ul class="nav justify-content-center justify-content-md-end"> | ||
<li class="nav-item"> | ||
<a [routerLink]="'/project/legal-notice'" class="nav-link"> | ||
<a | ||
[routerLink]="'/project/legal-notice'" | ||
class="nav-link"> | ||
{{ lang.get("NAV_ITEM_LEGAL_NOTICE") }} | ||
</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a [routerLink]="'/project/policy'" class="nav-link"> | ||
<a | ||
[routerLink]="'/project/policy'" | ||
class="nav-link"> | ||
{{ lang.get("NAV_ITEM_POLICY") }} | ||
</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a href="mailto:[email protected]" class="nav-link"> | ||
<a | ||
href="mailto:[email protected]" | ||
class="nav-link"> | ||
{{ lang.get("NAV_ITEM_CONTACT") }} | ||
</a> | ||
</li> | ||
|