You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
1.1 KiB
23 lines
1.1 KiB
9 months ago
|
mixin articleSort(posts)
|
||
|
.article-sort
|
||
|
- var year
|
||
|
- posts.each(function (article) {
|
||
|
- let tempYear = date(article.date, 'YYYY')
|
||
|
- let no_cover = article.cover === false || !theme.cover.archives_enable ? 'no-article-cover' : ''
|
||
|
- let title = article.title || _p('no_title')
|
||
|
if tempYear !== year
|
||
|
- year = tempYear
|
||
|
.article-sort-item.year= year
|
||
|
.article-sort-item(class=no_cover)
|
||
|
if article.cover && theme.cover.archives_enable
|
||
|
a.article-sort-item-img(href=url_for(article.path) title=title)
|
||
|
if article.cover_type === 'img'
|
||
|
img(src=url_for(article.cover) alt=title onerror=`this.onerror=null;this.src='${url_for(theme.error_img.post_page)}'`)
|
||
|
else
|
||
|
div(style=`background: ${article.cover}`)
|
||
|
.article-sort-item-info
|
||
|
.article-sort-item-time
|
||
|
i.far.fa-calendar-alt
|
||
|
time.post-meta-date-created(datetime=date_xml(article.date) title=_p('post.created') + ' ' + full_date(article.date))= date(article.date, config.date_format)
|
||
|
a.article-sort-item-title(href=url_for(article.path) title=title)= title
|
||
|
- })
|