Skip to content

Instantly share code, notes, and snippets.

@CleysonPH
Last active April 23, 2021 01:11
Show Gist options
  • Save CleysonPH/6bd09326b153aa5681b2f6f04c5fa476 to your computer and use it in GitHub Desktop.
Save CleysonPH/6bd09326b153aa5681b2f6f04c5fa476 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="pt-br" th:fragment="layout (conteudo)">
<head>
<meta charset="UTF-8">
<title>Herança de Templates</title>
</head>
<body>
<header>
<h1>Listagem</h1>
</header>
<main th:include="${conteudo}">
Contéudo Principal
</main>
<footer>
<span>Rodapé definido no template base</span>
</footer>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment