mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-17 21:15:50 +00:00
Merge branch 'master' of https://github.com/sasankglowtouch/kidclinic
This commit is contained in:
commit
94a92e771e
13 changed files with 43 additions and 5 deletions
BIN
.DS_Store
vendored
BIN
.DS_Store
vendored
Binary file not shown.
BIN
src/.DS_Store
vendored
BIN
src/.DS_Store
vendored
Binary file not shown.
BIN
src/main/.DS_Store
vendored
BIN
src/main/.DS_Store
vendored
Binary file not shown.
BIN
src/main/resources/.DS_Store
vendored
BIN
src/main/resources/.DS_Store
vendored
Binary file not shown.
BIN
src/main/resources/static/.DS_Store
vendored
BIN
src/main/resources/static/.DS_Store
vendored
Binary file not shown.
BIN
src/main/resources/static/resources/.DS_Store
vendored
BIN
src/main/resources/static/resources/.DS_Store
vendored
Binary file not shown.
BIN
src/main/resources/static/resources/images/doctor.jpg
Normal file
BIN
src/main/resources/static/resources/images/doctor.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 25 KiB |
BIN
src/main/resources/static/resources/images/doctor2.jpg
Normal file
BIN
src/main/resources/static/resources/images/doctor2.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 28 KiB |
BIN
src/main/resources/static/resources/images/doctor3.jpg
Normal file
BIN
src/main/resources/static/resources/images/doctor3.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 391 KiB |
BIN
src/main/resources/static/resources/images/doctor4.jpg
Normal file
BIN
src/main/resources/static/resources/images/doctor4.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 7.9 MiB |
BIN
src/main/resources/static/resources/images/doctor5.jpg
Normal file
BIN
src/main/resources/static/resources/images/doctor5.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 86 KiB |
BIN
src/main/resources/templates/.DS_Store
vendored
BIN
src/main/resources/templates/.DS_Store
vendored
Binary file not shown.
|
@ -1,16 +1,54 @@
|
|||
<!DOCTYPE html>
|
||||
|
||||
<html xmlns:th="http://www.thymeleaf.org" th:replace="~{fragments/layout :: layout (~{::body},'home')}">
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
||||
|
||||
<body>
|
||||
|
||||
<h2 th:text="#{welcome}">Welcome To My Crib</h2>
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<img class="img-responsive" src="../static/resources/images/pets.png" th:src="@{/resources/images/pets.png}"/>
|
||||
</div>
|
||||
|
||||
<!-- This is a test for a picture car. -->
|
||||
|
||||
<div class="container">
|
||||
<div id="myCarousel" class="carousel slide" data-ride="carousel">
|
||||
<!-- Indicators -->
|
||||
<ol class="carousel-indicators">
|
||||
<li data-target="#myCarousel" data-slide-to="0" class="active"></li>
|
||||
<li data-target="#myCarousel" data-slide-to="1"></li>
|
||||
<li data-target="#myCarousel" data-slide-to="2"></li>
|
||||
</ol>
|
||||
|
||||
<!-- Wrapper for slides -->
|
||||
<div class="carousel-inner">
|
||||
<div class="item active">
|
||||
<img src="../static/resources/images/doctor4.jpg" th:src="@{/resources/images/doctor4.jpg}" alt="Doctor" style="width:100%;">
|
||||
</div>
|
||||
|
||||
<div class="item">
|
||||
<img src="../static/resources/images/doctor5.jpg" th:src="@{/resources/images/doctor5.jpg}" alt="Doctor" style="width:100%;">
|
||||
</div>
|
||||
|
||||
<div class="item">
|
||||
<img src="../static/resources/images/doctor3.jpg" th:src="@{/resources/images/doctor3.jpg}" alt="Doctor" style="width:100%;">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Left and right controls -->
|
||||
<a class="left carousel-control" href="#myCarousel" data-slide="prev">
|
||||
<span class="glyphicon glyphicon-chevron-left"></span>
|
||||
<span class="sr-only">Previous</span>
|
||||
</a>
|
||||
<a class="right carousel-control" href="#myCarousel" data-slide="next">
|
||||
<span class="glyphicon glyphicon-chevron-right"></span>
|
||||
<span class="sr-only">Next</span>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
Loading…
Reference in a new issue