MedicalTrainingTracker/src/main/webapp/vue/base/header.jsp

38 lines
1.4 KiB
Plaintext

<spring:url value="/static/bootstrap/css/bootstrap.min.css" var="bootstrapCSS" />
<spring:url value="/static/bootstrap/css/starter-template.css" var="bootstrapStarterTemplateCSS" />
<spring:url value="/static/img/favicon.png" var="favicon" />
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="${favicon}">
<title>Medical Training Tracker</title>
<!-- Bootstrap core CSS -->
<link href="${bootstrapCSS}" rel="stylesheet">
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
<!-- <link href="../../assets/css/ie10-viewport-bug-workaround.css" rel="stylesheet"> -->
<!-- Custom styles for this template -->
<link href="${bootstrapStarterTemplateCSS}" rel="stylesheet">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<script type="text/javascript">
var print = function(text) {
var d = new Date();
console.log("["+d.getHours()+":"+d.getMinutes()+":"+d.getSeconds()+","+d.getMilliseconds()+"] "+text);
};
</script>