Mit Syntax aus "Advanced conditional insertion of fragments" so aufgemotzt,
dass es nicht an fehlenden Variablen/Fragmenten scheitert.
<!DOCTYPE html>
<html th:fragment="layout (title, content)" xmlns:th="http://www.thymeleaf.org">
<head>
- <title th:replace="${title}">Layout Title</title>
+ <title th:replace="${title}?:_">Layout Title</title>
</head>
<body>
<h1>Layout H1</h1>
- <div th:replace="${content}">
+ <div th:replace="${content}?:_">
<p>Layout content</p>
</div>
<footer>