-
Notifications
You must be signed in to change notification settings - Fork 9
/
links.ftl
25 lines (25 loc) · 1.02 KB
/
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
<#include "header.ftl">
<@header title="友情链接 - ${blog_title!}" ></@header>
<div class="container-fluid">
<div class="row">
<div id="main" class="col-12 clearfix" role="main">
<article class="posti" itemscope itemtype="http://schema.org/BlogPosting">
<h1 style="text-align:right;" class="post-title" itemprop="name headline">Links</h1>
<div class="post-content" itemprop="articleBody">
<ul>
<@linkTag method="list">
<#if links?size gt 0>
<#list links as link>
<li>
<a target="_blank" href="${link.url}">${link.name}</a>
</li>
</#list>
</#if>
</@linkTag>
</ul>
</div>
</article>
</div>
</div>
</div>
<#include "footer.ftl">