adding opgenpgp key
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
export const openPgpKey = {
|
||||
assetPath: '/keys/public.asc',
|
||||
fingerprint: '98FA30F85F2030A70F45AAEB3CDEA2DE5424B8E7',
|
||||
formattedFingerprint: '98FA 30F8 5F20 30A7 0F45 AAEB 3CDE A2DE 5424 B8E7',
|
||||
} as const;
|
||||
@@ -75,6 +75,22 @@
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="panel openpgp-section">
|
||||
<div class="openpgp-copy">
|
||||
<p class="eyebrow">{{ content().home.openPgpTitle }}</p>
|
||||
<p class="openpgp-description">{{ content().home.openPgpDescription }}</p>
|
||||
</div>
|
||||
<div class="openpgp-actions">
|
||||
<a class="action-link openpgp-download-link" [href]="openPgpKey.assetPath" download="julian-lechner-public.asc">
|
||||
{{ content().home.openPgpDownload }}
|
||||
</a>
|
||||
<p class="openpgp-fingerprint">
|
||||
<span>{{ content().home.openPgpFingerprintLabel }}</span>
|
||||
<strong>{{ openPgpKey.formattedFingerprint }}</strong>
|
||||
</p>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section id="about" class="story-section panel about-scroll-anim-enabled">
|
||||
<div class="section-heading">
|
||||
<p class="eyebrow">{{ content().home.aboutEyebrow }}</p>
|
||||
|
||||
@@ -12,6 +12,7 @@ import { interval } from 'rxjs';
|
||||
import { takeUntilDestroyed } from '@angular/core/rxjs-interop';
|
||||
|
||||
import { global } from '../../global';
|
||||
import { openPgpKey } from '../generated/openpgp-key.generated';
|
||||
import type {
|
||||
LanguageBioTextEntry,
|
||||
LanguagePortraitHighlight,
|
||||
@@ -71,6 +72,7 @@ export class HomeComponent implements OnInit, AfterViewInit, OnDestroy {
|
||||
protected readonly global = global;
|
||||
protected readonly age = this.calculateAge(global.birthdate);
|
||||
protected readonly contactMailHref = `mailto:${global.contactMail}`;
|
||||
protected readonly openPgpKey = openPgpKey;
|
||||
protected readonly arrowRightIcon = arrowRightIcon;
|
||||
protected readonly arrowDownIcon = arrowDownIcon;
|
||||
protected readonly envelopeIcon = envelopeIcon;
|
||||
|
||||
Reference in New Issue
Block a user