mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-06-30 21:45:49 +00:00
33 lines
1.3 KiB
Text
33 lines
1.3 KiB
Text
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags" %>
|
|
|
|
<!--
|
|
PetClinic :: a Spring Framework demonstration
|
|
-->
|
|
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
|
|
<title>PetClinic :: a Spring Framework demonstration</title>
|
|
|
|
|
|
<spring:url value="/webjars/bootstrap/2.3.0/css/bootstrap.min.css" var="bootstrapCss"/>
|
|
<link href="${bootstrapCss}" rel="stylesheet"/>
|
|
|
|
<spring:url value="/resources/css/petclinic.css" var="petclinicCss"/>
|
|
<link href="${petclinicCss}" rel="stylesheet"/>
|
|
|
|
<spring:url value="/webjars/jquery/2.0.3/jquery.js" var="jQuery"/>
|
|
<script src="${jQuery}"></script>
|
|
|
|
<!-- jquery-ui.js file is really big so we only load what we need instead of loading everything -->
|
|
<spring:url value="/webjars/jquery-ui/1.10.3/ui/jquery.ui.core.js" var="jQueryUiCore"/>
|
|
<script src="${jQueryUiCore}"></script>
|
|
|
|
<spring:url value="/webjars/jquery-ui/1.10.3/ui/jquery.ui.datepicker.js" var="jQueryUiDatePicker"/>
|
|
<script src="${jQueryUiDatePicker}"></script>
|
|
|
|
<!-- jquery-ui.css file is not that big so we can afford to load it -->
|
|
<spring:url value="/webjars/jquery-ui/1.10.3/themes/base/jquery-ui.css" var="jQueryUiCss"/>
|
|
<link href="${jQueryUiCss}" rel="stylesheet"></link>
|
|
</head>
|
|
|
|
|