Skip to content

Instantly share code, notes, and snippets.

@elbuo8
Created December 31, 2013 04:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save elbuo8/8192553 to your computer and use it in GitHub Desktop.
Save elbuo8/8192553 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
-->
<html ng-app="HypeM">
<head>
<meta charset="utf-8" />
<meta name="format-detection" content="telephone=no" />
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1" />
<link rel="stylesheet" type="text/css" href="css/ionic.css" />
<link rel="stylesheet" type="text/css" href="css/index.css" />
<title>HypeM</title>
<!-- Libs -->
<script type="text/javascript" src="js/ionic.js"></script>
<script type="text/javascript" src="js/angular/angular.js"></script>
<script type="text/javascript" src="js/angular/angular-animate.js"></script>
<script type="text/javascript" src="js/angular/angular-touch.js"></script>
<script type="text/javascript" src="js/angular/angular-sanitize.js"></script>
<script type="text/javascript" src="js/angular/angular-route.js"></script>
<script type="text/javascript" src="js/angular/angular-resource.js"></script>
<script type="text/javascript" src="js/ionic-angular.js"></script>
<!-- App -->
<script type="text/javascript" src="phonegap.js"></script>
<script type="text/javascript" src="js/app.js"></script>
</head>
<body ng-ap="HypeM" ng-controller="PlayerCtrl">
<side-menus>
<pane side-menu-content>
<header class="bar bar-header bar-light">
<h1 class="title">HypeM</h1>
</header>
<content has-header="true"></content>
</pane>
<side-menu side="left">
<header class="bar bar-header bar-dark">
<h1 class="title">Popular</h1>
</header>
</side-menu>
</side-menus>
<div class="app-body">
<div ng-view></div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment