Skip to content

Commit 86fff35

Browse files
author
Timofey Myakishev
committed
Commit
1 parent 1d74e20 commit 86fff35

File tree

2 files changed

+22
-10
lines changed

2 files changed

+22
-10
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,5 @@
33
#### Step tow - $ cd ./BotManager
44
#### Step three - $ npm install
55
#### Step four - $ ionic serve
6+
7+
<img src="assets/img/speakers/giraffe.jpg">
Lines changed: 20 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,34 @@
11
<ion-header>
22

3-
<ion-navbar>
4-
<ion-title>{{ 'LIST_MASTER_TITLE' | translate }}</ion-title>
3+
<!--<ion-navbar>-->
4+
<!--<ion-title>{{ 'LIST_MASTER_TITLE' | translate }}</ion-title>-->
55

6-
<ion-buttons end>
7-
<button ion-button icon-only (click)="addItem()">
8-
<ion-icon name="add"></ion-icon>
9-
</button>
10-
</ion-buttons>
11-
</ion-navbar>
6+
<!--<ion-buttons end>-->
7+
<!--<button ion-button icon-only (click)="addItem()">-->
8+
<!--<ion-icon name="add"></ion-icon>-->
9+
<!--</button>-->
10+
<!--</ion-buttons>-->
11+
<!--</ion-navbar>-->
1212

1313
</ion-header>
1414

1515
<ion-content>
1616

17+
<div>
18+
<ion-title>Bot Manager</ion-title>
19+
20+
<ion-buttons end>
21+
<button ion-button icon-only clear (click)="addItem()">
22+
<ion-icon name="add"></ion-icon>
23+
</button>
24+
</ion-buttons>
25+
</div>
26+
1727
<ion-list>
1828
<ion-item-sliding *ngFor="let item of currentItems">
1929
<button ion-item (click)="openItem(item)">
2030
<ion-avatar item-start>
21-
<img [src]="item.profilePic" />
31+
<img [src]="item.profilePic"/>
2232
</ion-avatar>
2333
<h2>{{item.name}}</h2>
2434
<!-- <p>{{item.about}}</p> -->
@@ -32,4 +42,4 @@ <h2>{{item.name}}</h2>
3242
</ion-item-options> -->
3343
</ion-item-sliding>
3444
</ion-list>
35-
</ion-content>
45+
</ion-content>

0 commit comments

Comments
 (0)