Skip to content

Instantly share code, notes, and snippets.

@linhvovn
Created February 3, 2019 05:28
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 linhvovn/d07fa11246436eeb7af01f3a5c241db9 to your computer and use it in GitHub Desktop.
Save linhvovn/d07fa11246436eeb7af01f3a5c241db9 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>I18N Spring Boot</title>
</head>
<body>
<h2 data-th-text="#{home.welcome}"></h2>
<p data-th-text="#{home.info}"></p>
<p data-th-text="#{home.changelanguage}"></p>
<ul>
<li><a href="?lang=en" data-th-text="#{home.lang.en}"></a></li>
<li><a href="?lang=de" data-th-text="#{home.lang.de}"></a></li>
<li><a href="?lang=zh" data-th-text="#{home.lang.zh}"></a></li>
</ul>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment