chore: link sorting
This commit is contained in:
parent
138ca40c3c
commit
979a41b56d
2 changed files with 2 additions and 4 deletions
|
@ -10,8 +10,7 @@ module.exports = async function () {
|
|||
fetchOptions: { headers },
|
||||
})
|
||||
const feed = await res
|
||||
const articles = feed.feed
|
||||
return articles.reverse().map((article) => {
|
||||
return feed.feed.map((article) => {
|
||||
const tags = article['content']['tags'].map((tag) => tag['name'])
|
||||
return {
|
||||
url: article['content']['url'],
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
{% if links.size > 0 %}
|
||||
{% assign data = links | reverse %}
|
||||
<h2 class="icon--bold m-0 text-xl flex flex-row items-center font-black leading-tight tracking-normal dark:text-gray-200 md:text-2xl mt-8 mb-4 icon--28">
|
||||
{% tablericon "link" "Links" %}
|
||||
<div class="ml-1">Links</div>
|
||||
</h2>
|
||||
<ul class="list-inside list-disc pl-5 md:pl-10">
|
||||
{% for link in data limit: 5 %}
|
||||
{% 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