mirror of
https://github.com/helenclx/leilukin-site.git
synced 2025-03-31 02:50:52 +00:00
12 lines
321 B
JavaScript
12 lines
321 B
JavaScript
export default {
|
|
layout: "main/content",
|
|
tags: ["posts", "contents", "feed items"],
|
|
isArticle: true,
|
|
eleventyComputed: {
|
|
title: (data) => `${data.articleTitle} | Blog`,
|
|
eleventyNavigation: {
|
|
key: (data) => data.articleTitle,
|
|
parent: "Blog Archive"
|
|
}
|
|
}
|
|
} |