This PR adds a context view for blog authors that displays details about their social. It will be show on the blog details page. Here is an example:  
22 lines
383 B
TypeScript
22 lines
383 B
TypeScript
export type BlogPostDataEntry = {
|
|
title: string;
|
|
content: string;
|
|
description: string;
|
|
authors: BlogAuthor[];
|
|
date: string;
|
|
cover_image: string | null;
|
|
tags: string[];
|
|
reposts: string[];
|
|
updated?: string;
|
|
pinned?: boolean;
|
|
filePath: string;
|
|
slug: string;
|
|
};
|
|
|
|
export type BlogAuthor = {
|
|
name: string;
|
|
image: string;
|
|
twitter: string;
|
|
github: string;
|
|
};
|