-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathpage_photo_list.html
32 lines (32 loc) · 1.44 KB
/
page_photo_list.html
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
#include("./_inc/_layout.html")
#@layout()
#define content()
<div class="layui-col-xs12 layui-col-sm7 layui-col-md8 perfree-content-left">
<link rel="stylesheet" href="static/css/article.css" media="all">
<link rel="stylesheet" href="static/css/photoList.css" media="all">
<div class="layui-card">
<div class="layui-card-body" style="padding: 8px;margin-bottom: 10px;">
<div class="layui-card-header article-title" style="height: 30px;">
<h2>相册<span style="font-weight: 500;font-size: 13px;margin-left: 10px;">记录每一个瞬间</span></h2>
</div>
<div class="perfree-article-content">
#perfreePhotosList()
#for(photo:photoList)
<a class="photos-box pjax" title="#(photo.name)" href="#(WEB_DOMAIN ??)/photo/#(photo.id)">
<div class="photos-img-box">
<img src="#(photo.coverImg)" height="120px">
</div>
<div class="photos-name-box">
#if(photo.isEncrypt == 1)
<i class="fa fa-lock"></i>
#end
<span>#(photo.name)</span>
</div>
</a>
#end
#end
</div>
</div>
</div>
</div>
#end