2026-02-12 15:45:11 +08:00
|
|
|
{{ define "base" }}
|
2025-06-24 19:34:39 +08:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html>
|
|
|
|
|
<head>
|
2026-02-12 15:45:11 +08:00
|
|
|
<title>{{ .Title }}</title>
|
2025-06-24 19:34:39 +08:00
|
|
|
<meta charset="UTF-8">
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
|
<style type="text/css">
|
2026-02-12 15:45:11 +08:00
|
|
|
body { background: #f8f8f8; margin: 0; padding: 0; }
|
|
|
|
|
.layui-main { width: 1140px; margin: 0 auto; }
|
|
|
|
|
.container { width: 1170px; margin: 0 auto; overflow: hidden; }
|
|
|
|
|
.header .layui-nav { position: absolute; right: 0; top: 0; padding: 0; background: none; }
|
|
|
|
|
.post-list { width: 75%; float: left; display: block; }
|
|
|
|
|
.list-card { background: #fff; overflow: hidden; padding: 20px; position: relative; border-radius: 10px; margin-bottom: 10px; }
|
|
|
|
|
.sidebar { float: left; width: 25%; padding-left: 20px; box-sizing: border-box; }
|
|
|
|
|
.page-navigator { margin: 20px 0; }
|
|
|
|
|
.pagination a { margin-right: 10px; }
|
2025-06-24 19:34:39 +08:00
|
|
|
</style>
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
{{ template "header" . }}
|
2026-02-12 15:45:11 +08:00
|
|
|
<div class="container">
|
|
|
|
|
<main>{{ block "content" . }}{{ end }}</main>
|
2025-06-24 19:34:39 +08:00
|
|
|
</div>
|
|
|
|
|
</body>
|
2026-02-12 15:45:11 +08:00
|
|
|
</html>
|
|
|
|
|
{{ end }}
|