-
Notifications
You must be signed in to change notification settings - Fork 10
/
index.tmpl
47 lines (47 loc) · 2.19 KB
/
index.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
{{- define "caicai_anatole/index" -}}
<!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">
<div x-data="posts">
{{template "caicai_anatole/module/post-entry" .}}
</div>
{{if (gt .posts.Pages 1)}}
{{$pagination:=(indexPagination .posts.PageNum .posts.Pages 3)}}
<div class="pagination flex justify-between items-center">
{{if $pagination.HasPrev}}
<a class="btn w-20" role="navigation" href="{{$pagination.PrevPageFullPath}}"
title="上一页">上一页</a>
{{end}}
<span class="text-sm">{{add .posts.PageNum 1}}/{{ .posts.Pages}}</span>
{{if $pagination.HasNext}}
<a class="btn w-20" role="navigation" href="{{$pagination.NextPageFullPath}}"
title="下一页">下一页</a>
{{end}}
</div>
{{end}}
</div>
</div>
{{template "caicai_anatole/module/post-search-modal" .}}
{{template "caicai_anatole/module/post-likes/scripts" .}}
</body>
</html>
{{end}}