2016-12-01 13:40:04 -05:00
|
|
|
<ion-header>
|
|
|
|
<ion-toolbar>
|
|
|
|
<ion-title>
|
|
|
|
Strongs: {{item.prefix}}{{item.sn}}
|
|
|
|
</ion-title>
|
|
|
|
<ion-buttons start>
|
2016-12-01 15:21:07 -05:00
|
|
|
<button ion-button (click)="dismiss()" large>
|
|
|
|
<ion-icon name="md-close"></ion-icon>
|
2016-12-01 13:40:04 -05:00
|
|
|
</button>
|
|
|
|
</ion-buttons>
|
|
|
|
</ion-toolbar>
|
|
|
|
</ion-header>
|
|
|
|
<ion-content padding>
|
2016-12-02 13:00:55 -05:00
|
|
|
<br>
|
|
|
|
<h2>Strongs Definitition</h2>
|
2016-12-01 13:40:04 -05:00
|
|
|
<p>
|
2016-12-02 13:00:55 -05:00
|
|
|
<b>{{item.def.tr}} ({{item.def.sn}})</b> - {{item.def.p}} - {{item.def.lemma}} - <span [innerHTML]="item.def.de"></span><br>
|
2016-12-01 13:40:04 -05:00
|
|
|
</p>
|
2016-12-28 15:57:16 -05:00
|
|
|
<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>
|
2016-12-02 13:00:55 -05:00
|
|
|
<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>
|
2016-12-01 13:40:04 -05:00
|
|
|
</ion-content>
|