2
0
mirror of https://github.com/inventree/inventree-website.git synced 2025-04-28 13:36:47 +00:00

merge in repo changes

This commit is contained in:
Matthias Mair 2023-01-27 16:33:31 +01:00
parent 59d480cee9
commit df9d37ad79
No known key found for this signature in database
GPG Key ID: A593429DDA23B66A
2 changed files with 10 additions and 2 deletions

View File

@ -33,8 +33,7 @@ collections:
permalink: "/:title" permalink: "/:title"
repo: repo:
output: true output: true
custom_permalink_placeholders: ["publisher"] permalink: ":author/:title"
#permalink: "/:publisher/:title"
news: news:
output: true output: true
permalink: /news/:year/:month/:day/:title permalink: /news/:year/:month/:day/:title

View File

@ -0,0 +1,9 @@
module Jekyll
module Drops
class UrlDrop < Drop
def author
@obj.author
end
end
end
end