cut-to-pack-service/target/classes/templates/home.html

24 lines
949 B
HTML

<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org" xmlns:sec="http://www.w3.org/1999/xhtml">
<head th:replace="_fragments :: head('Home Page')"></head>
<body>
<div class="container-fluid">
<header class="row page-header" th:replace="_fragments :: page-header"></header>
<main class="row page-main">
<div class="col-sm">
<div class="welcome-container">
<object id="welcome-msg" type="image/svg+xml" th:attr="data=@{'/img/welcome.svg'}"></object>
</div>
</div>
</main>
</div>
<div th:replace="_fragments :: page-footer-scripts"></div>
<script th:src="@{/js/vendor/vivus.min.js}"></script>
<script>
new Vivus( 'welcome-msg', {
type: 'delayed',
duration: 100
});
</script>
</body>
</html>