Skip to content

Instantly share code, notes, and snippets.

@42shadow42
Created February 12, 2015 18:08
Show Gist options
  • Save 42shadow42/d10e57c07c6c33ece1c1 to your computer and use it in GitHub Desktop.
Save 42shadow42/d10e57c07c6c33ece1c1 to your computer and use it in GitHub Desktop.
Jopozg
<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>
var myApp = angular.module('myApp', ['ionic']);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment