diff --git a/config/filters.js b/config/filters.js index 0c8198e2..47a5b5be 100644 --- a/config/filters.js +++ b/config/filters.js @@ -57,17 +57,4 @@ module.exports = { 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 } - }, } diff --git a/src/_includes/post.liquid b/src/_includes/post.liquid index a0f2e13c..04f1dc76 100644 --- a/src/_includes/post.liquid +++ b/src/_includes/post.liquid @@ -1,18 +1,11 @@ --- layout: main --- -{% assign backLinkData = page.url | blogListingLink: collections.posts %} {% include "header.liquid" %}

{{ title }}

-
- - - - Originally shown on page {{ backLinkData.number }} - -
+
{{ content }} diff --git a/src/index.html b/src/index.html index ca2f3619..5102dbd5 100644 --- a/src/index.html +++ b/src/index.html @@ -23,7 +23,7 @@ meta: --- {% include "now-topper.liquid" %} {% for post in pagination.items %} {% if post.data.published %} -
+