mirror of
https://github.com/yv1ing/MollyBlog.git
synced 2025-09-16 14:53:45 +08:00
80 lines
2.3 KiB
HTML
80 lines
2.3 KiB
HTML
{{ define "about.html" }}
|
|
|
|
<html lang="{{ .site_info.language }}">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{{ .site_info.title }} | {{ .about.title }}</title>
|
|
<link rel="icon" type="image/x-icon" href="../assets/img/logo.png"/>
|
|
<link rel="stylesheet" href="../assets/css/lib/fontawesome.all.min.css">
|
|
<link rel="stylesheet" href="../assets/css/lib/bootstrap.min.css">
|
|
<link rel="stylesheet" href="../assets/css/lib/xcode-dark.css">
|
|
<link rel="stylesheet" href="../assets/css/global.css">
|
|
<link rel="stylesheet" href="../assets/css/about.css">
|
|
<script src="../assets/js/lib/typed.umd.js"></script>
|
|
<script src="../assets/js/lib/jquery.min.js"></script>
|
|
<script src="../assets/js/lib/bootstrap.min.js"></script>
|
|
<script src="../assets/js/lib/fontawesome.all.min.js"></script>
|
|
|
|
<!-- statistics script -->
|
|
{{ if .statistics.enable }}
|
|
{{ .statistics.script }}
|
|
{{ end }}
|
|
</head>
|
|
<body>
|
|
<div class="root-container">
|
|
<div class="d-block d-md-none" style="height: 30px;"></div>
|
|
|
|
<!-- menu -->
|
|
<div class="container p-3">
|
|
<div class="row pt-lg-3">
|
|
<div class="col">
|
|
{{ range $i, $v := .menu.Items }}
|
|
<span class="main-menu-item">
|
|
<i class="{{ $v.Icon }} m-icon"></i>
|
|
<a class="main-menu-link" href="{{ $v.Url }}"> {{ $v.Name }} </a>
|
|
</span>
|
|
{{ end }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- body -->
|
|
<div class="container p-3">
|
|
<div class="row pt-lg-3">
|
|
<div class="col mx-auto">
|
|
<h3 class="about-title"># {{ .about.title }}</h3>
|
|
<div class="about-content">
|
|
{{ .about.content }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- post footer -->
|
|
{{ if .about.success }}
|
|
<div class="about-footer">
|
|
{{ .site_info.copyright }}
|
|
</div>
|
|
{{ end }}
|
|
</div>
|
|
|
|
|
|
|
|
<!-- footer -->
|
|
{{ if not .about.success }}
|
|
<div class="footer">
|
|
{{ .site_info.copyright }}
|
|
</div>
|
|
{{ end }}
|
|
|
|
<!-- theme -->
|
|
<div class="theme-wrap" onclick="changeTheme()">
|
|
<i class="fa-solid fa-circle-half-stroke" style="width: 100%; height: 100%"></i>
|
|
</div>
|
|
|
|
<script src="../assets/js/global.js"></script>
|
|
</body>
|
|
</html>
|
|
|
|
{{ end }} |