generated from halo-dev/halo-theme-quick-starter
-
Notifications
You must be signed in to change notification settings - Fork 19
/
photos.ftl
41 lines (40 loc) · 1.87 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
<#include "layout/head.ftl">
<@head title="相册 | ${blog_title!}"/>
<div class="container sidebar-position-right page-home">
<header id="header" class="header" itemscope itemtype="http://schema.org/WPHeader">
<div class="header-inner">
<#include "layout/navbar.ftl">
<#include "layout/brand_wrapper.ftl">
<#include "layout/master.ftl">
</div>
</header>
<main id="main" class="main">
<div class="main-inner">
<div class="content-wrap">
<div id="content" class="content">
<section id="post" class="custom-page posts-expand">
<article class="post post-type-normal" itemscope="" itemtype="http://schema.org/ImageGallery">
<#--图片盒子-->
<div class="user-picbox picbox">
<@photoTag method="list">
<#list photos as photo>
<div class="pics">
<a data-fancybox="images" href="${photo.url!}" class="image">
<img class="user-gallery" data-original="${photo.thumbnail!}"
src="${photo.thumbnail!}"
alt="${photo.name!}" itemprop="contentUrl"/></a>
</div>
</#list>
</@photoTag>
</div>
</article>
</section>
</div>
</div>
<#include "layout/sheet_directory.ftl">
</div>
</main>
<#include "layout/footer.ftl">
<#include "layout/back_to_top.ftl">
</div>
<#include "layout/tail.ftl">