Skip to content

Instantly share code, notes, and snippets.

@fuchodeveloper
Created April 23, 2018 21:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fuchodeveloper/8f6276469c7e3e1677bfdb9609d87398 to your computer and use it in GitHub Desktop.
Save fuchodeveloper/8f6276469c7e3e1677bfdb9609d87398 to your computer and use it in GitHub Desktop.
Display custom hello message
<!DOCTYPE HTML>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<title>Hello Result</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>
<body>
<h1>Howdy!</h1>
<p th:text="'Hello, ' + ${hello.firstName} + ' ' + ${hello.lastName}" />
<a href="/hello">New user?</a>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment