welcome.jsp

33 lines | 794 B Blame History Raw Download
<!DOCTYPE html>

<%@ page session="false" %>
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags" %>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
<%@ taglib prefix="petclinic" tagdir="/WEB-INF/tags" %>


<html lang="en">

<petclinic:htmlHeader/>

<body>
<petclinic:bodyHeader menuName="home"/>

<div class="container-fluid">
    <div class="container xd-container">
        <h2><fmt:message key="welcome"/></h2>
        <div class="row">
            <div class="col-md-12">
                <spring:url value="/resources/images/pets.png" htmlEscape="true" var="petsImage"/>
                <img class="img-responsive" src="${petsImage}"/>
            </div>
        </div>

        <petclinic:pivotal/>
    </div>
</div>
<petclinic:footer/>
</body>

</html>