menu.html
1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!--
Generated template for the Menu page.
See http://ionicframework.com/docs/v2/components/#navigation for more info on
Ionic pages and navigation.
-->
<ion-header>
<ion-navbar color="primary">
<ion-title>Top</ion-title>
</ion-navbar>
</ion-header>
<ion-content padding class="top-menu-page">
<ion-card class="title">
<img src="assets/img/menuTitle.png"/>
<div class="card-title">中学問題集</div>
<div class="card-subtitle">理科</div>
</ion-card>
<button ion-button full large>1・2年生の復習</button>
<p *ngFor="let item_f of list_f">
<button ion-button color="light" block round (click)="itemSelected(item_f)">{{item_f.title}}</button>
</p>
<!--
<button ion-button full>2年生</button>
<p *ngFor="let item_s of list_s">
<button ion-button color="light" block round (click)="itemSelected(item_s)">{{item_s.title}}</button>
</p>
<button ion-button full>3年生</button>
<p *ngFor="let item_t of list_t">
<button ion-button color="light" block round (click)="itemSelected(item_t)">{{item_t.title}}</button>
</p>
-->
</ion-content>