zotan.pw-web/Pages/blog/Blog.cshtml

22 lines
757 B
Plaintext

@page "/blog"
@model BlogModel
@{
ViewData["title"] = "blog";
ViewData["desc"] = "Blog of a disabled neurodivergent queer person unhappy with the state of the world.";
}
@section head {
<link rel="alternate" title="zotan.pw >> blog" type="application/json" href="/blog/feed.json"/>
}
<p>Hey there, welcome to the blog of a disabled neurodivergent queer person unhappy with the state of the world.</p>
<p>This is where I post about things that make it somewhat fun, things that help me with life in general or just things I felt like sharing.</p>
<h1 id="posts">Posts</h1>
<ul>
@foreach (var post in BlogModel.Posts) {
<li>
<strong>@post.PublishedOn.ToString("yyyy-MM-dd")</strong> <a href="/blog/@post.Shorthand">@post.Title</a>
</li>
}
</ul>