Created
          February 13, 2018 17:17 
        
      - 
      
- 
        Save zubayerahamed/c75d9865c7d2881f5f20721aedc4c427 to your computer and use it in GitHub Desktop. 
    Thymeleaf Tags Usages
  
        
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | <!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