mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 11:41:20 +08:00
33 lines
701 B
HTML
33 lines
701 B
HTML
<ion-view>
|
|
<ion-aside [content]="content" style="background-color: red">
|
|
<h2 style="color: white">LEFT</h2>
|
|
<!--
|
|
<ion-list inset>
|
|
<div class="list-header">
|
|
Menu
|
|
</div>
|
|
<ion-item>
|
|
About
|
|
</ion-item>
|
|
<ion-item>
|
|
Specials
|
|
</ion-item>
|
|
<ion-item>
|
|
Beer
|
|
</ion-item>
|
|
<ion-item>
|
|
Potatoes
|
|
</ion-item>
|
|
</ion-list>
|
|
-->
|
|
</ion-aside>
|
|
|
|
<ion-content #content style="background-color: blue">
|
|
<h2 style="color: white">HELLO</h2>
|
|
</ion-content>
|
|
|
|
<ion-aside side="right" [content]="content" style="background-color: green">
|
|
<h2 style="color: white">RIGHT</h2>
|
|
</ion-aside>
|
|
</ion-view>
|