-
Notifications
You must be signed in to change notification settings - Fork 10
/
sheet.tmpl
64 lines (63 loc) · 3.08 KB
/
sheet.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
55
56
57
58
59
60
61
62
63
64
{{- define "caicai_anatole/sheet" -}}
<!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>{{.sheet.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" .}}
{{template "caicai_anatole/module/highlightjs/libs-import" .}}
{{template "caicai_anatole/module/lightgallery/libs-import" .}}
<script src="https://cdn.jsdelivr.net/npm/vue@2"></script>
</head>
<body x-data="{ postSearchVisible: false }">
{{template "caicai_anatole/module/sidebar" .}}
<div class="main">
{{template "caicai_anatole/module/page-top" .}}
<div class="content">
<div class="m-[30px] mt-[20px] border-b border-gray-200 animated fadeInDown">
<div class="flex flex-col pb-3">
<div class="flex flex-wrap items-end">
<h3 class="text-xl leading-6 font-medium text-gray-900">{{ .post.Title}}</h3>
</div>
<div>
<div class="post-info mt-2">
<div class="meta">
<div class="info">
<i class="iconify w-3 h-3" data-icon="mdi:calendar-month-outline"></i>
<span class="date">{{unix_milli_time_format "2006-01-02" .sheet.CreateTime }}</span>
<i class="iconify w-3 h-3" data-icon="mdi:comment-outline"></i>
<a href="{{.sheet.FullPath}}#comment_widget">Comments</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="post-page">
<div class="post animated fadeInDown">
<div id="post-content" class="post-content markdown-body">
{{noescape .sheet.Content}}
</div>
</div>
<div id="comment_widget" style="margin: 30px;">
{{template "global.comment" .}}
</div>
</div>
</div>
</div>
{{template "caicai_anatole/module/highlightjs/scripts" .}}
{{template "caicai_anatole/module/lightgallery/scripts" .}}
{{template "caicai_anatole/module/post-search-modal" .}}
</body>
</html>
{{end}}