tomando esse erro terminal pagina parou de funciona
**2023-07-03T16:31:22.236-03:00 ERROR 20232 --- [nio-8080-exec-3] o.a.c.c.C.[.[.[/].[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed: org.thymeleaf.exceptions.TemplateInputException: An error happened during template parsing (template: "class path resource [templates/filmes/listagem.html]")] with root cause **
listagem.html
<!DOCTYPE html>
<html lang="en"
xmlns:th="http://thymeleaf.org"
xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
layout:decorate="~{template.html}"
>
<head>
<title>Lista de filmes</title>
</head>
<body>
<div layout:fragment="conteudo">
<h1>Lista de filmes</h1>
<table>
<thead>
<tr>
<th>NOME</th>
<th>DURAÇÃO</th>
<th>ANO DE LANÇAMENTO</th>
<th>GÊNERO</th>
</tr>
</thead>
<tbody>
<tr th:each="filme : ${lista}">
<td th:text="${filme.nome}"></td>
<td th:text="${filme.duracaoEmMinutos}"></td>
<td th:text="${filme.anoLancamento}"></td>
<td th:text="${filme.genero}"></td>
</tr>
</tbody>
</table>
</div>
</body>
</html>