chore: revert back link code
This commit is contained in:
parent
03f1b1a1a0
commit
34092dfe91
3 changed files with 2 additions and 22 deletions
|
@ -57,17 +57,4 @@ module.exports = {
|
||||||
|
|
||||||
return data
|
return data
|
||||||
},
|
},
|
||||||
pageLinkMeta: (postUrl, collection, pageSize = 10) => {
|
|
||||||
const index = collection.findIndex((p) => p.data.page.url === postUrl)
|
|
||||||
if (index === -1) throw new Error(`${postUrl} not found in collection`)
|
|
||||||
return {
|
|
||||||
number: Math.ceil(collection.length / pageSize) - Math.ceil(index / pageSize),
|
|
||||||
slug: collection[index].fileSlug,
|
|
||||||
}
|
|
||||||
},
|
|
||||||
blogListingLink: (postUrl, collection, pageSize = 10) => {
|
|
||||||
const pageLinkMeta = module.exports.pageLinkMeta(postUrl, collection, pageSize)
|
|
||||||
if (pageLinkMeta.number === 0) return { uri: `/#${pageLinkMeta.slug}`, number: '1' }
|
|
||||||
return { uri: `/${pageLinkMeta.number}#${pageLinkMeta.slug}`, number: pageLinkMeta.number + 1 }
|
|
||||||
},
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,18 +1,11 @@
|
||||||
---
|
---
|
||||||
layout: main
|
layout: main
|
||||||
---
|
---
|
||||||
{% assign backLinkData = page.url | blogListingLink: collections.posts %}
|
|
||||||
{% include "header.liquid" %}
|
{% include "header.liquid" %}
|
||||||
<article class="h-entry">
|
<article class="h-entry">
|
||||||
<h2 class="p-name text-xl md:text-2xl font-black leading-tight dark:text-gray-200 pt-12">{{ title }}</h2>
|
<h2 class="p-name text-xl md:text-2xl font-black leading-tight dark:text-gray-200 pt-12">{{ title }}</h2>
|
||||||
<span class="p-author h-card hidden">{{ site.title }}</span>
|
<span class="p-author h-card hidden">{{ site.title }}</span>
|
||||||
<div class="mt-2 mb-6 text-sm flex flex-row items-center">
|
<time class="pt-2 pb-6 text-sm dt-published" datetime="{{ date }}">{{ date | date: "%m.%d.%Y" }}</time>
|
||||||
<time class="ml-1 dt-published" datetime="{{ date }}">{{ date | date: "%m.%d.%Y" }}</time>
|
|
||||||
<span class="mx-1">•</span>
|
|
||||||
<a class="flex flex-row items-center" href="{{ backLinkData.uri }}">
|
|
||||||
Originally shown on page {{ backLinkData.number }}
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
<div class="p-summary hidden">{{ post_excerpt | markdown }}</div>
|
<div class="p-summary hidden">{{ post_excerpt | markdown }}</div>
|
||||||
<div class="e-content prose dark:prose-invert hover:prose-a:text-blue-500 max-w-full text-gray-800 dark:text-white">
|
<div class="e-content prose dark:prose-invert hover:prose-a:text-blue-500 max-w-full text-gray-800 dark:text-white">
|
||||||
{{ content }}
|
{{ content }}
|
||||||
|
|
|
@ -23,7 +23,7 @@ meta:
|
||||||
---
|
---
|
||||||
|
|
||||||
{% include "now-topper.liquid" %} {% for post in pagination.items %} {% if post.data.published %}
|
{% include "now-topper.liquid" %} {% for post in pagination.items %} {% if post.data.published %}
|
||||||
<article class="h-entry" id="{{ post.fileSlug }}">
|
<article class="h-entry">
|
||||||
<div
|
<div
|
||||||
class="mb-8 border-b border-gray-200 pb-4 text-gray-800 dark:border-gray-700 dark:text-white"
|
class="mb-8 border-b border-gray-200 pb-4 text-gray-800 dark:border-gray-700 dark:text-white"
|
||||||
>
|
>
|
||||||
|
|
Reference in a new issue