mirror of
https://gitlab.com/walljm/dynamicbible.git
synced 2025-07-25 16:29:49 -04:00
9 lines
357 B
HTML
9 lines
357 B
HTML
<ion-card-title class="title" padding>{{item.ref}}</ion-card-title>
|
|
<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">{{w.t}}</span><br></span>
|
|
</div>
|
|
</ion-card-content>
|