pcgamedb/server/templates/layouts/base.html

26 lines
744 B
HTML
Raw Normal View History

2024-11-28 14:53:36 -05:00
{{define "base"}}
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>{{template "title" .}}</title>
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/swiper@8/swiper-bundle.min.css"
/>
{{block "styles" .}}{{end}}
</head>
<body>
2024-11-28 17:04:28 -05:00
{{template "header" .}} {{block "content" .}}{{end}} {{template "footer" .}}
2024-11-28 14:53:36 -05:00
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
{{block "scripts" .}}{{end}}
</body>
</html>
{{end}}