fix: urls
This commit is contained in:
parent
71b50da27a
commit
75f6078996
2 changed files with 6 additions and 1 deletions
|
@ -46,6 +46,11 @@ export default {
|
||||||
if (postType === 'featured') return shuffleArray(posts.filter(post => post.featured === true)).slice(0, 3)
|
if (postType === 'featured') return shuffleArray(posts.filter(post => post.featured === true)).slice(0, 3)
|
||||||
return posts.slice(0, 5)
|
return posts.slice(0, 5)
|
||||||
},
|
},
|
||||||
|
slugifyPost: (title) => slugify(title, {
|
||||||
|
replacement: '-',
|
||||||
|
remove: /[#,&,+()$~%.'":*?<>{}\[\]\/\\|`!@\^\—]/g,
|
||||||
|
lower: true,
|
||||||
|
}),
|
||||||
|
|
||||||
// watching
|
// watching
|
||||||
featuredWatching: (watching, count) => shuffleArray(watching.filter(watch => watch.favorite === true)).slice(0, count),
|
featuredWatching: (watching, count) => shuffleArray(watching.filter(watch => watch.favorite === true)).slice(0, count),
|
||||||
|
|
|
@ -4,7 +4,7 @@ pagination:
|
||||||
data: posts
|
data: posts
|
||||||
size: 1
|
size: 1
|
||||||
alias: post
|
alias: post
|
||||||
permalink: "/posts/{{ post.date | date: '%Y' }}/{{ post.title | slugify | downcase }}/index.html"
|
permalink: "/posts/{{ post.date | date: '%Y' }}/{{ post.title | slugifyPost }}/index.html"
|
||||||
schema: blog
|
schema: blog
|
||||||
---
|
---
|
||||||
{%- capture postUrl %}{{ meta.url }}{{ post.url }}{% endcapture -%}
|
{%- capture postUrl %}{{ meta.url }}{{ post.url }}{% endcapture -%}
|
||||||
|
|
Reference in a new issue