2017-01-18 17:51:06 -05:00
|
|
|
<ion-item class="title passage-title">
|
2017-01-21 02:21:44 -05:00
|
|
|
<ion-icon name="book" item-left></ion-icon> {{cardItem.data.ref}}
|
2016-12-01 10:39:04 -05:00
|
|
|
<button ion-button icon-only item-right large clear (click)="close()">
|
|
|
|
<ion-icon name="close-circle"></ion-icon>
|
|
|
|
</button>
|
|
|
|
</ion-item>
|
|
|
|
<ion-card-content>
|
2017-01-04 15:38:36 -05:00
|
|
|
<br>
|
2017-01-18 17:51:06 -05:00
|
|
|
|
2017-01-21 02:21:44 -05:00
|
|
|
<div class="passage-text" *ngFor="let ch of cardItem.data.cs">
|
|
|
|
<h2 *ngIf="cardItem.data.cs.length > 1">
|
2017-01-18 17:51:06 -05:00
|
|
|
<b>Chapter {{ch.ch}}</b>
|
2017-01-04 15:38:36 -05:00
|
|
|
</h2>
|
2017-01-18 17:51:06 -05:00
|
|
|
<span *ngFor="let vs of ch.vss">
|
|
|
|
<b>{{vs.v}}.</b> <span *ngFor="let w of vs.w">
|
2017-01-20 18:57:02 -05:00
|
|
|
<template [ngIf]="!isPunct(w.t)"> </template><a *ngIf="w.s != null" (click)="openStrongs(w.s)" (press)="openMenu(w.s)">{{w.t}}</a>
|
|
|
|
<template [ngIf]="w.s == null">{{w.t}}</template>
|
2017-01-21 02:21:44 -05:00
|
|
|
</span><br *ngIf="versesOnNewLine">
|
2017-01-18 17:51:06 -05:00
|
|
|
</span>
|
2016-12-01 10:39:04 -05:00
|
|
|
</div>
|
|
|
|
</ion-card-content>
|
2017-01-18 17:51:06 -05:00
|
|
|
<button ion-button icon-left clear small (click)="close()">
|
|
|
|
<ion-icon name="close-circle"></ion-icon>
|
|
|
|
<div>Close</div>
|
|
|
|
</button>
|