mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-17 21:35:50 +00:00
Link CSS and JS from "dist" directory
This commit is contained in:
parent
6b17ae3c7a
commit
7ca31902c9
1 changed files with 10 additions and 19 deletions
|
@ -5,8 +5,8 @@
|
|||
<title>Pet Clinic - Home</title>
|
||||
<meta name="description" content="">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<link rel="shortcut icon" href="/favicon.ico">
|
||||
<link rel="stylesheet" href="styles/main.css">
|
||||
<link rel="shortcut icon" href="static/dist/favicon.ico">
|
||||
<link rel="stylesheet" href="static/dist/styles/main.css">
|
||||
</head>
|
||||
<body data-ng-controller="MainController">
|
||||
<!--[if lt IE 10]>
|
||||
|
@ -14,28 +14,19 @@
|
|||
<![endif]-->
|
||||
|
||||
<data-ng-include src="'components/header.html'"></data-ng-include>
|
||||
|
||||
|
||||
<data-ui-view></data-ui-view>
|
||||
|
||||
<data-ng-include src="'components/footer.html'"></data-ng-include>
|
||||
|
||||
<!-- Google Analytics: change UA-XXXXX-X to be your site's ID. -->
|
||||
<!-- <script> -->
|
||||
<!-- (function(b,o,i,l,e,r){b.GoogleAnalyticsObject=l;b[l]||(b[l]= -->
|
||||
<!-- function(){(b[l].q=b[l].q||[]).push(arguments)});b[l].l=+new Date; -->
|
||||
<!-- e=o.createElement(i);r=o.getElementsByTagName(i)[0]; -->
|
||||
<!-- e.src='//www.google-analytics.com/analytics.js'; -->
|
||||
<!-- r.parentNode.insertBefore(e,r)}(window,document,'script','ga')); -->
|
||||
<!-- ga('create','UA-XXXXX-X');ga('send','pageview'); -->
|
||||
<!-- </script> -->
|
||||
<!--<script src="http://code.jquery.com/jquery.js"></script>-->
|
||||
<script src="plugins/jquery/jquery-2.1.0.min.js"></script>
|
||||
<script src="plugins/jquery-ui/jquery-ui.min.js"></script>
|
||||
|
||||
<!-- bootstrap javascript -->
|
||||
<script src="static/dist/scripts/vendor.js"></script>
|
||||
<script src="static/dist/scripts/main.js"></script>
|
||||
|
||||
<!--<script src="http://code.jquery.com/jquery.js"></script>-->
|
||||
<script src="plugins/jquery/jquery-2.1.0.min.js"></script>
|
||||
<script src="plugins/jquery-ui/jquery-ui.min.js"></script>
|
||||
|
||||
<!-- bootstrap javascript -->
|
||||
<script src="js/lib/bootstrap.js"></script>
|
||||
|
||||
<!-- build:js({app,.tmp}) scripts/main.js -->
|
||||
<script src="js/lib/angular.js"></script>
|
||||
<script src="js/lib/angular-resource.js"></script>
|
||||
|
|
Loading…
Reference in a new issue