Compare commits
2 Commits
e9d9836238
...
cd0f38764d
Author | SHA1 | Date | |
---|---|---|---|
cd0f38764d | |||
7bd1c5a45a |
@ -27,21 +27,22 @@ public class RawArticle : PageModel
|
||||
{
|
||||
if (!_blogService.TryGetBlogPost(year, month, day, slug, out BlogPost? post))
|
||||
{
|
||||
Response.StatusCode = 404;
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
|
||||
Response.Headers.Add("Content-Type", "text/plain; charset=utf-8");
|
||||
|
||||
using Utf8ValueStringBuilder builder = ZString.CreateUtf8StringBuilder();
|
||||
builder.AppendLine("# " + post.Title);
|
||||
if (_blogService.TryGetAuthor(post, out Author? author))
|
||||
builder.AppendLine($"Author: {author.Name}");
|
||||
|
||||
|
||||
builder.AppendLine($"Published: {post.Published:R}");
|
||||
if (post.Updated.HasValue)
|
||||
builder.AppendLine($"Updated: {post.Updated:R}");
|
||||
|
||||
|
||||
builder.AppendLine();
|
||||
builder.AppendLine(post.Body);
|
||||
return Content(builder.ToString(), "text/plain");
|
||||
return Content(builder.ToString());
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user