Archive commit

This commit is contained in:
Erik McClure
2019-08-28 21:15:02 -07:00
commit 735845746e
1435 changed files with 140724 additions and 0 deletions
@@ -0,0 +1,4 @@
span(*ngFor="let l of links; let i = index")
span(*ngIf="i > 0") |
a([href]="l" target="_blank" rel="noopener noreferrer")
| {{l | siteName}}
@@ -0,0 +1,10 @@
import { Component, ChangeDetectionStrategy, Input } from '@angular/core';
@Component({
selector: 'site-links',
templateUrl: 'site-links.pug',
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class SiteLinks {
@Input() links: string[] = [];
}