Skip to content

Instantly share code, notes, and snippets.

@predic8
Created November 17, 2017 08:49
Show Gist options
  • Save predic8/5aadadce284b2d9bc6949969573eb867 to your computer and use it in GitHub Desktop.
Save predic8/5aadadce284b2d9bc6949969573eb867 to your computer and use it in GitHub Desktop.
jokes.html
<!DOCTYPE HTML>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<title>Getting Started: Serving Web Content</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<link href="webjars/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" media="screen"/>
</head>
<body>
<div class="container">
<h1>The Jokes</h1>
<table class="table table-striped">
<tbody>
<tr th:each="joke : ${jokes}">
<td th:text="${joke.joke}"></td>
</tr>
</tbody>
</table>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment