mirror of
https://gitlab.com/walljm/dynamicbible.git
synced 2025-07-29 10:39:49 -04:00
14 lines
530 B
HTML
14 lines
530 B
HTML
![]() |
<ion-item class="title" padding>
|
||
|
{{item.ref}}
|
||
|
<button ion-button icon-only item-right large clear (click)="close()">
|
||
|
<ion-icon name="close-circle"></ion-icon>
|
||
|
</button>
|
||
|
</ion-item>
|
||
|
<ion-card-content>
|
||
|
<div *ngFor="let ch of item.cs">
|
||
|
<br>
|
||
|
<h2 *ngIf="item.cs.length > 1"><b>Chapter {{ch.ch}}</b></h2>
|
||
|
<span *ngFor="let vs of ch.vss"><b>{{vs.v}}.</b> <span *ngFor="let w of vs.w"><a (click)="openStrongs(w.s)">{{w.t}}</a></span><br></span>
|
||
|
</div>
|
||
|
</ion-card-content>
|