fix: link sort
This commit is contained in:
parent
eb44335d87
commit
a27cc791e8
2 changed files with 2 additions and 2 deletions
|
@ -12,7 +12,7 @@ module.exports = async function () {
|
|||
const feed = await res
|
||||
const articles = feed.feed
|
||||
return articles.reverse().map((article) => {
|
||||
const tags = article['content']['tags'].map((tag) => tag['name'])
|
||||
const tags = article['content']['tags'].reverse().map((tag) => tag['name'])
|
||||
return {
|
||||
url: article['content']['url'],
|
||||
title: article['content']['title'],
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<div class="ml-1">Links</div>
|
||||
</h2>
|
||||
<ul class="list-inside list-disc pl-5 md:pl-10">
|
||||
{% for link in links limit: 5 | reverse %}
|
||||
{% for link in links limit: 5 %}
|
||||
<li class="mt-1.5 mb-2">
|
||||
<a href="{{link.url}}" title="{{link.title | escape}}">
|
||||
{{ link.title }}
|
||||
|
|
Reference in a new issue