A Pen by Nathaniel Hunter on CodePen.
Created
February 12, 2015 18:08
-
-
Save 42shadow42/d10e57c07c6c33ece1c1 to your computer and use it in GitHub Desktop.
Jopozg
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html ng-app="myApp"> | |
<head> | |
<script src="https://code.ionicframework.com/nightly/js/ionic.bundle.js"></script> | |
<link rel="stylesheet" href="https://code.ionicframework.com/nightly/css/ionic.css"/> | |
</head> | |
<body ng> | |
<ion-header-bar> | |
<div class="buttons"> | |
<button class="button">Left Button</button> | |
</div> | |
<h1 class="title">I am still here!</h1> | |
<div class="buttons"> | |
<button class="button">Right Button</button> | |
</div> | |
</ion-header-bar> | |
<ion-header-bar class="bar-subheader"> | |
<div class="buttons"> | |
<button class="button">Left Button</button> | |
</div> | |
<h1 class="title">Where did i go?!</h1> | |
<div class="buttons"> | |
<button class="button">Right Button</button> | |
</div> | |
</ion-header-bar> | |
<ion-content>I am the content!</ion-content> | |
</body> | |
<html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var myApp = angular.module('myApp', ['ionic']); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment