-
Notifications
You must be signed in to change notification settings - Fork 10
/
search.tmpl
54 lines (52 loc) · 2.55 KB
/
search.tmpl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{{- define "caicai_anatole/search" -}}
<!DOCTYPE html>
<html lang="zh">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>搜索结果: {{.blog_title}}</title>
<meta name="apple-mobile-web-app-capable" content="yes"/>
<meta name="apple-mobile-web-app-status-bar-style" content="black"/>
<meta name="format-detection" content="telephone=no"/>
<meta name="renderer" content="webkit"/>
<meta name="author" content="{{ .user.Nickname}}"/>
<meta name="keywords" content="{{ .meta_keywords}}"/>
<meta name="description" content="{{ .meta_description}}"/>
<link rel="alternate" type="application/rss+xml" title="atom 1.0" href="{{ .atom_url}}"/>
{{template "global.head" .}}
{{template "caicai_anatole/module/styles" .}}
</head>
<body x-data="{ postSearchVisible: false }">
{{template "caicai_anatole/module/sidebar" .}}
<div class="main">
{{template "caicai_anatole/module/page-top" .}}
<div class="content">
{{template "caicai_anatole/module/page-heading" (dict "title" (printf "%s%s" "搜索:" .keyword) "subtitle" (printf "%s%s" .posts.Total " 篇文章"))}}
{{if .posts.Content}}
<div x-data="posts">
{{template "caicai_anatole/module/post-entry" .}}
</div>
{{if (gt .posts.Pages 1)}}
{{$pagination:=searchPagination .posts.PageNum .posts.Pages 3 .keyword}}
<div class="pagination flex justify-between items-center">
{{if $pagination.HasPrev}}
<a class="btn" role="navigation" href="{{$pagination.PrevPageFullPath}}">上一页</a>
{{end}}
<span class="text-sm">{{add .posts.PageNum 1}}/{{ .posts.Pages}}</span>
{{if $pagination.HasNext}}
<a class="btn" role="navigation" href="{{$pagination.NextPageFullPath}}">下一页</a>
{{end}}
</div>
{{end}}
{{else}}
<div class="">
<h3 class="page-title">没有找到任何东西!</h3>
</div>
{{end}}
</div>
</div>
{{template "caicai_anatole/module/post-likes/scripts" .}}
{{template "caicai_anatole/module/post-search-modal" .}}
</body>
</html>
{{end}}