32 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			HTML
		
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			HTML
		
	
	
	
| <!DOCTYPE html>
 | |
| <html lang="en" xmlns:th="http://www.thymeleaf.org">
 | |
| <head th:replace="fragments/skeleton :: head">
 | |
|     <meta charset="utf-8" />
 | |
|     <meta http-equiv="refresh" content="5; URL=http://localhost:65000/"/>
 | |
|     <meta name="viewport" content="width=device-width, initial-scale=1" />
 | |
|     <link href="../static/css/bootstrap.min.css" rel="stylesheet" />
 | |
|     <link href="../static/css/mosh.css" rel="stylesheet" />
 | |
| </head>
 | |
| <body>
 | |
| <div th:replace="fragments/skeleton :: navigation">
 | |
|     <div class="container">
 | |
|         <nav>Navigation</nav>
 | |
|     </div>
 | |
| </div>
 | |
| <div class="container product">
 | |
| 
 | |
|     <div class="row info">
 | |
|         <p align="center"><a href="http://localhost:65000/">If the automatic redirection to the stock management admin
 | |
|             front end does not work, click here.</a></p>
 | |
|     </div>
 | |
|     <footer th:replace="fragments/skeleton :: footer">
 | |
|         <p>© 2017</p>
 | |
|     </footer>
 | |
| </div>
 | |
| <script src="../static/js/jquery-3.1.1.min.js"
 | |
|         th:src="@{/js/jquery-3.1.1.min.js}"></script>
 | |
| <!-- Include all compiled plugins (below), or include individual files as needed -->
 | |
| <script src="../static/js/bootstrap.min.js"
 | |
|         th:src="@{/js/bootstrap.min.js}"></script>
 | |
| </body>
 | |
| </html> |