-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathContent3.html
37 lines (25 loc) · 1016 Bytes
/
Content3.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org"
xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
layout:decorate="~{Template3}"
>
<head th:replace="Template3 :: common_header(~{::title},~{::link})">
<title>DEĞİŞTİRİLDİ TITTILE</title>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" th:href="@{/resources/css/first.css}" >
<link rel="stylesheet" type="text/css" th:href="@{/resources/css/second.css}" >
<link rel="stylesheet" type="text/css" th:href="@{/resources/css/fourth.css}" >
</head>
<body>
<section layout:fragment="head">
<p>Head content here changed- CONTENT4</p>
</section>
<section layout:fragment="content">
<p>This is a paragraph from content - CONTENT4</p>
<p th:text="${message}"></p>
</section>
<footer>
<p layout:fragment="footer">This is some footer content - CONTENT4</p>
</footer>
</body>
</html>