<!DOCTYPE html> <html xmlns:th="http://www.thymeleaf.org" xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout" layout:decorate="~{layout/mainLayout}"> <head> <title th:text="${title}">Settings title</title> </head> <body> <section id="content"> <article layout:fragment="content"> <p th:text="${result}">Authentication result</p><p><a href="/settings">Settings</a>.</p> </article> </section> <aside id="column"> <p layout:fragment="column" th:replace="views/partial/settings_tabs">Settings navigation</p> </aside> </body> </html>