35 lines
1.1 KiB
HTML
Raw Normal View History

<ion-header>
<ion-toolbar>
<ion-title>
Strongs: {{item.prefix}}{{item.sn}}
</ion-title>
<ion-buttons start>
<button ion-button (click)="dismiss()" large>
<ion-icon name="md-close"></ion-icon>
</button>
</ion-buttons>
</ion-toolbar>
</ion-header>
<ion-content padding>
<br>
<h2>Strongs Definitition</h2>
<p>
<b>{{item.def.tr}} ({{item.def.sn}})</b> - {{item.def.p}} - {{item.def.lemma}} - <span [innerHTML]="item.def.de"></span><br>
</p>
<template [ngIf]="item.rmac !== null">
<h2>Robinsons Morphalogical Analysis Code</h2>
<b>{{item.rmac.id}}</b>
<br>
<ul>
<li *ngFor="let c of item.rmac.d">
{{c}}
</li>
</ul>
</template>
<h2>Cross References</h2>
<dl>
<dd *ngFor="let wrd of item.crossrefs.ss">
{{wrd.w}}: <span *ngFor="let p of wrd.rs"><a (click)="openPassage(p.r)">{{makePassage(p.r)}}</a>, </span>
</dd>
</dl>
</ion-content>