Skip to content

Instantly share code, notes, and snippets.

@mevsungur
Created February 21, 2020 22:47
Show Gist options
  • Save mevsungur/2b633d3187bb6c31c7f01fa0b907ddf1 to your computer and use it in GitHub Desktop.
Save mevsungur/2b633d3187bb6c31c7f01fa0b907ddf1 to your computer and use it in GitHub Desktop.
Spring Boot Thymeleaf Template
<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="UTF-8">
<title>Hoş Geldiniz</title>
</head>
<body>
<h5 th:text="${metin}"></h5>
<ul>
<li th:each="item : ${list}" th:text="${item}"> </li>
</ul>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment