@model IReadOnlyList @{ ViewData["Title"] = "Projects"; }

Series planning

Projects

New project
@if (!Model.Any()) {

Start with a series or standalone novel

Create a project, then add books, chapters and scenes in narrative order.

Create your first project
} else {
@foreach (var project in Model) {

@project.ProjectName

@(string.IsNullOrWhiteSpace(project.Description) ? "No description yet." : project.Description)

}
}