Cerca

head.html

<head th:fragment="head">
	<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
	<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />

	<link rel="stylesheet" type="text/css" th:href="@{/webjars/bootstrap/4.5.0/css/bootstrap.min.css}" />
	<link rel="stylesheet" type="text/css" th:href="@{/webjars/font-awesome/5.13.0/css/all.min.css}" />
	<link rel="stylesheet" type="text/css" th:href="@{/webjars/animate.css/3.5.2/animate.min.css}" />
	<link rel="stylesheet" type="text/css" th:href="@{/css/main.css}" />

	<script type="text/javascript" th:src="@{/webjars/jquery/3.5.1/jquery.min.js}"></script>
	<script type="text/javascript" th:src="@{/webjars/bootstrap/4.5.0/js/bootstrap.min.js}"></script>
	<script type="text/javascript" th:src="@{/js/common.js}"></script>

	<title th:text="#{page.title}"></title>
</head>

file.html

<head th:replace="/tiles/head.html::head">
    <title></title>
</head>
Indietro