Last active
December 14, 2015 18:39
-
-
Save inoccu/5131373 to your computer and use it in GitHub Desktop.
Template of PhoneGap + jQuery Mobile + Backbone.js
This file contains hidden or 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> | |
<meta name="format-detection" content="telephone=no" /> | |
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height, target-densitydpi=device-dpi" /> | |
<link rel="stylesheet" type="text/css" href="css/index.css" /> | |
<link rel="stylesheet" type="text/css" href="css/jquery.mobile.min.css" /> | |
<title>Sample Title</title> | |
</head> | |
<body> | |
<div id="page-home" data-role="page"> | |
</div> | |
<script type="text/javascript" src="phonegap.js"></script> | |
<script type="text/javascript" src="js/jquery.min.js"></script> | |
<script type="text/javascript" src="js/jquery.mobile.config.js"></script> | |
<script type="text/javascript" src="js/jquery.mobile.min.js"></script> | |
<script type="text/javascript" src="js/underscore-min.js"></script> | |
<script type="text/javascript" src="js/backbone-min.js"></script> | |
<script type="text/javascript" src="js/index.js"></script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment