Skip to content

Instantly share code, notes, and snippets.

@zubayerahamed
Created February 13, 2018 17:17
Show Gist options
  • Save zubayerahamed/c75d9865c7d2881f5f20721aedc4c427 to your computer and use it in GitHub Desktop.
Save zubayerahamed/c75d9865c7d2881f5f20721aedc4c427 to your computer and use it in GitHub Desktop.
Thymeleaf Tags Usages
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<title>Thymeleaf tags usage</title>
</head>
<body>
<!-- Class append -->
<li th:classappend="${pageTitle='HOME'} ? active"><a href="">Home</a></li>
<!-- Attribute append -->
<button th:attrappend="data-url=${userSlug != null} ? @{/myaccount/}"></button>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment