Added about page
This commit is contained in:
@@ -58,6 +58,22 @@ builder.Services.AddHopFrame(options => {
|
||||
table.Property(p => p.SourceCode)
|
||||
.List(false);
|
||||
});
|
||||
|
||||
context.Table<About>(table => {
|
||||
table.Property(a => a.AboutMe)
|
||||
.List(false)
|
||||
.IsTextArea(true);
|
||||
|
||||
table.Property(a => a.Future)
|
||||
.List(false)
|
||||
.IsTextArea(true);
|
||||
});
|
||||
|
||||
context.Table<TimelineEntry>(table => {
|
||||
table.Property(t => t.Description)
|
||||
.IsTextArea(true)
|
||||
.List(false);
|
||||
});
|
||||
});
|
||||
});
|
||||
builder.Services.AddRazorComponents()
|
||||
|
||||
Reference in New Issue
Block a user