feat: add open graph information to pages

This commit is contained in:
Stevan Freeborn
2024-04-14 16:38:50 -05:00
parent 0bc94e2a59
commit 29e83ece20
14 changed files with 120 additions and 13 deletions
+1
View File
@@ -7,6 +7,7 @@ record Post
public bool IsPublished { get; init; } = false;
public DateTime PublishedAt { get; init; }
public string Slug { get; init; } = string.Empty;
public string OpenGraphImage { get; init; } = string.Empty;
}
record PostWithContent : Post