forked from halo-dev/halo-theme-hshan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sheet_links.ftl
63 lines (62 loc) · 3.33 KB
/
sheet_links.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<@layout.extends name="module/macro.ftl">
<@layout.put block="title">${sheet.title!} - ${blog_title!}</@layout.put>
<@layout.put block="content">
<div id="page" class="site">
<main class="site-main" id="main">
<div class="site-content">
<header class="bg-cover page-header">
<#if sheet.thumbnail?? && sheet.thumbnail!=''>
<div class="cover-bg">
<img src="${sheet.thumbnail!}" alt="${sheet.title!}">
</div>
<#else>
<div class="default-cover-bg">
</div>
</#if>
<div class="cover-content">
<div class="inner">
<div class="post-count"></div>
<h1 class="page-title" style="font-size: 46px;">${sheet.title!}</h1>
</div>
</div>
</header>
<div class="links-box ">
<div class="links-items">
<@linkTag method="listTeams">
<#list teams as item>
<#if item.team?? && item.team!=''>
<h3 style="width: 100%; margin: 10px;">${item.team}</h3>
</#if>
<#list item.links?sort_by('priority')?reverse as link>
<a class="links-item card card-item-vel" style="display: block;" href="${link.url!}"
target="_blank" onfocus="this.blur();">
<div class="media">
<#if link.logo?? && link.logo!=''>
<div class="media-left">
<figure class="image is-64x64">
<img src="${link.logo}" alt="${link.name}">
</figure>
</div>
</#if>
<div class="media-content">
<p class="link-title">${link.name!}</p>
<p class="link-desc">${link.description!}</p>
</div>
</div>
</a>
</#list>
</#list>
</@linkTag>
</div>
</div>
</div>
<#include "module/comment.ftl">
<#if is_post??>
<@comment post,"post" />
<#elseif is_sheet??>
<@comment sheet,"sheet" />
</#if>
</main>
</div>
</@layout.put>
</@layout.extends>