-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphotos.ftl
41 lines (41 loc) · 1.5 KB
/
photos.ftl
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
<!DOCTYPE HTML>
<html>
<head>
<title>图库 - ${blog_title!}</title>
<meta charset="utf-8" />
<@global.head />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="${theme_base!}/source/plugins/gallery/css/main.css" />
<noscript><link rel="stylesheet" href="${theme_base!}/plugins/gallery/css/noscript.css" /></noscript>
</head>
<body class="is-loading-0 is-loading-1 is-loading-2">
<div id="main">
<header id="header">
<h1>图库</h1>
<p>${user.description!}</p>
</header>
<section id="thumbnails">
<@photoTag method="list">
<#if photos?size gt 0>
<#list photos as photo>
<article>
<a class="thumbnail" href="${photo.url}" data-position="left center"><img src="${photo.thumbnail}" alt="${photo.description}" /></a>
<h2>${photo.name}</h2>
<p>${photo.takeTime!}</p>
</article>
</#list>
</#if>
</@photoTag>
</section>
<footer id="footer">
<ul class="copyright">
<li>© ${blog_title!}.</li><li>Design: <a href="http://html5up.net">HTML5 UP</a>.</li>
</ul>
</footer>
</div>
<script src="${theme_base!}/source/js/jquery.min.js"></script>
<script src="${theme_base!}/source/js/skel.min.js"></script>
<script src="${theme_base!}/source/plugins/gallery/js/main.js"></script>
<@global.statistics />
</body>
</html>