mirror of
https://github.com/Terncode/pixel.horse.git
synced 2026-09-24 21:55:52 +02:00
Archive commit
This commit is contained in:
@@ -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[] = [];
|
||||
}
|
||||
Reference in New Issue
Block a user