25 lines
946 B
HTML
25 lines
946 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
|
<meta charset="utf-8" />
|
|
<title>WinRTApp</title>
|
|
|
|
<!-- WinJS 引用 -->
|
|
<link href="//Microsoft.WinJS.1.0/css/ui-dark.css" rel="stylesheet" />
|
|
<script src="//Microsoft.WinJS.1.0/js/base.js"></script>
|
|
<script src="//Microsoft.WinJS.1.0/js/ui.js"></script>
|
|
|
|
<!-- WinRTApp 引用 -->
|
|
<link href="/css/default.css" rel="stylesheet" />
|
|
<script src="/js/default.js"></script>
|
|
<script src="/js/navigator.js"></script>
|
|
</head>
|
|
<body>
|
|
<div id="contenthost" data-win-control="Application.PageControlNavigator" data-win-options="{home: '/pages/home/home.html'}"></div>
|
|
<!-- <div id="appbar" data-win-control="WinJS.UI.AppBar">
|
|
<button data-win-control="WinJS.UI.AppBarCommand" data-win-options="{id:'cmd', label:'Command', icon:'placeholder'}" type="button"></button>
|
|
</div> -->
|
|
</body>
|
|
</html>
|