14 lines
379 B
HTML
14 lines
379 B
HTML
<!DOCTYPE html>
|
|
<html xmlns="http://www.w3.org/1999/xhtml"
|
|
xmlns:th="http://www.thymeleaf.org"
|
|
layout:decorate="~{layouts/page-layout}">
|
|
<head>
|
|
<title>About Us</title>
|
|
</head>
|
|
<div layout:fragment="page_subtitle">
|
|
<h1 class="title" th:text="#{'About Us'}" ></h1>
|
|
</div>
|
|
<body layout:fragment="page_content" id="page_content">
|
|
<div class="section-space"></div>
|
|
</body>
|
|
</html> |