mirror of
https://github.com/jerryc127/hexo-theme-butterfly.git
synced 2025-09-15 12:58:48 +08:00
21 lines
681 B
Plaintext
21 lines
681 B
Plaintext
#article-container
|
|
if top_img === false
|
|
h1.page-title= page.title
|
|
|
|
.flink
|
|
if site.data.link
|
|
each i in site.data.link
|
|
if i.class_name
|
|
h2!= i.class_name
|
|
if i.class_desc
|
|
.flink-desc!=i.class_desc
|
|
.flink-list
|
|
each item in i.link_list
|
|
.flink-list-item
|
|
a(href=url_for(item.link) title=item.name target="_blank")
|
|
img(src=url_for(item.avatar) onerror=`this.onerror=null;this.src='` + url_for(theme.error_img.flink) + `'` alt=item.name )
|
|
span.flink-item-name= item.name
|
|
span.flink-item-desc(title=item.descr)= item.descr
|
|
!= page.content
|
|
|