Files
theme-earth/templates/modules/layout.html
2022-10-06 11:37:05 +08:00

30 lines
920 B
HTML

<!DOCTYPE html>
<html lang="en" th:fragment="html (content)">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"
/>
<title th:text="${site.title}"></title>
<link
rel="stylesheet"
th:href="@{/assets/dist/style.css}"
href="./assets/dist/style.css"
/>
<script th:src="@{/assets/dist/main.iife.js}"></script>
</head>
<body>
<th:block th:replace="modules/header" />
<section class="container mx-auto"></section>
<section class="container mx-auto mt-6 grid grid-cols-4 gap-6">
<div class="col-span-4 sm:col-span-3">
<th:block th:replace="${content}" />
</div>
<th:block th:replace="modules/sidebar" />
</section>
<th:block th:replace="modules/footer" />
</body>
</html>