We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d97ab2c commit d708c88Copy full SHA for d708c88
build/types.ts
@@ -48,6 +48,7 @@ export interface BlogEntryLight {
48
twitter2?: string;
49
50
published: Date | string;
51
+ language: string;
52
header: {
53
url: string;
54
width: number;
build/utils.ts
@@ -33,6 +33,7 @@ export function makeLightBlogList(fullList: BlogEntry[]): BlogEntryLight[] {
33
author: entry.meta.author,
34
mail: entry.meta.mail,
35
published: entry.meta.published,
36
+ language: entry.meta.language,
37
header: entry.meta.header,
38
},
39
};
0 commit comments