ko-starter/src/index.html

35 lines
1.0 KiB
HTML
Raw Normal View History

2018-11-30 02:42:47 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
2018-11-30 02:42:47 +00:00
<title>Knockout Starter</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
2018-11-30 02:42:47 +00:00
<!-- build:css -->
<link href="assets/css/style.css" rel="stylesheet">
<link rel="stylesheet" href="vendor/bootstrap/css/bootstrap.min.css">
<!-- endbuild -->
<!-- build:js -->
<script src="app/require.config.js"></script>
<script data-main="app/startup.js" src="vendor/requirejs/require.js"></script>
2018-11-30 02:42:47 +00:00
<!-- endbuild -->
</head>
<body>
<!--[if lte IE 8]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="https://browsehappy.com/">upgrade your browser</a> to improve your experience and security.</p>
<![endif]-->
2018-11-30 02:42:47 +00:00
<!-- web components -->
<div class="container">
<nav-bar></nav-bar>
<home-page></home-page>
</div>
</body>
</html>