-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharchive.html
More file actions
63 lines (62 loc) · 3.01 KB
/
archive.html
File metadata and controls
63 lines (62 loc) · 3.01 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="icon" href="${favicon!''}" type="image/x-icon">
<link rel="shortcut icon" href="${favicon!''}" type="image/x-icon">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>文章归档 - ${title!''}</title>
<link rel="stylesheet" href="${una}/${theme}/css/font-awesome.css">
<link rel="stylesheet" href="${una}/${theme}/css/ionicons.css">
<link rel="stylesheet" href="${una}/${theme}/css/adminlte.css">
<link rel="stylesheet" href="${una}/${theme}/css/unaboot.css">
</head>
<body>
<div class="sidebar animated fadeInDown">
<#include "./left.html"/>
</div>
<div class="main">
<div class="page-top animated fadeInDown">
<#include "./nav.html"/>
</div>
<div class="autopagerize_page_element">
<div class="content">
<div class="archive animated fadeInDown">
<h3 class="m-4">归档</h3>
<ul class="list-with-title">
<@u_archives>
<#if results?? && results?size gt 0>
<#list results as archive>
<div class="listing-title">${archive.name}</div>
<ul class="listing" style="padding-left:25px;">
<@u_archive_detail name=archive.name>
<#if results?? && results?size gt 0>
<#list results as post>
<div class="listing-item">
<div class="listing-post">
<a href="${una}/blog/${post.slug}" title="${post.title}">${post.title}</a>
<div class="post-time">
<span class="date">${post.createTime?string("yyyy-MM-dd")}</span>
</div>
</div>
</div>
</#list>
</#if>
</@u_archive_detail>
</ul>
</#list>
</#if>
</@u_archives>
</ul>
</div>
</div>
</div>
</div>
<script src="${una}/${theme}/js/jquery/jquery.min.js"></script>
<script src="${una}/${theme}/js/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="${una}/${theme}/js/adminlte.min.js"></script>
<script type="text/javascript">
</script>
</body>
</html>