mirror of
https://github.com/yv1ing/MollyBlog.git
synced 2025-09-16 14:53:45 +08:00
118 lines
4.5 KiB
HTML
118 lines
4.5 KiB
HTML
{{ define "search.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 }}</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/global.css">
|
|
<link rel="stylesheet" href="../assets/css/search.css">
|
|
<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 mx-auto post-menu">
|
|
{{ range $i, $v := .menu.Items }}
|
|
<i class="{{ $v.Icon }} m-icon"></i>
|
|
<a class="main-menu-link" href="{{ $v.Url }}"> {{ $v.Name }} </a>
|
|
{{ end }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<!-- body -->
|
|
<div class="container p-3">
|
|
<div class="row pt-lg-3">
|
|
<h3 class="search-post-title"># {{ .search_post.title }}</h3>
|
|
<div class="row pt-4">
|
|
<div class="search-wrap">
|
|
<input class="search-input" id="search-search-input" type="text">
|
|
|
|
<button class="search-button" onclick="search()">
|
|
<i class="fa-solid fa-magnifying-glass"></i>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
<div class="row pt-4">
|
|
<div class="col">
|
|
{{ range $i, $v := .search_post.posts }}
|
|
<div class="row search-post-item">
|
|
<div class="col search-post-item-wrap">
|
|
<span class="d-none d-md-inline search-post-item-date">{{ $v.Date }} | </span>
|
|
<span>
|
|
<a href="/post/{{ $v.HtmlHash }}">{{ $v.Title }}</a>
|
|
</span>
|
|
</div>
|
|
<div class="col d-none d-md-block search-post-item-wrap">
|
|
<span style="color: var(--secondary-text-color)">
|
|
[
|
|
{{ range $i2, $v2 := $v.TagHashes }}
|
|
<a href="/tag/{{ $v2.Hash }}" style="color: var(--secondary-text-color)">{{ $v2.Name }}</a>
|
|
{{ if lt (add $i2 1) (len $v.TagHashes) }}
|
|
,
|
|
{{ end }}
|
|
{{ end }}
|
|
]
|
|
</span>
|
|
</div>
|
|
</div>
|
|
{{ end }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row pt-3 pt-lg-4">
|
|
<div class="col-12 col-md-8">
|
|
<div class="search-post-pagination">
|
|
<span class="search-post-pagination-item">
|
|
<a href="/search?keyword={{ .search_post.keyword }}&page={{ .page_info.pre_page }}">
|
|
<
|
|
</a>
|
|
</span>
|
|
<span class="search-post-pagination-item">
|
|
{{ .page_info.cur_page }} / {{ .page_info.all_page }}
|
|
</span>
|
|
<span class="search-post-pagination-item">
|
|
<a href="/search?keyword={{ .search_post.keyword }}&page={{ .page_info.nxt_page }}">
|
|
>
|
|
</a>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<!-- footer -->
|
|
<div class="footer">
|
|
{{ .site_info.copyright }}
|
|
</div>
|
|
|
|
<!-- 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>
|
|
<script src="../assets/js/search.js"></script>
|
|
</body>
|
|
</html>
|
|
|
|
{{ end }} |