diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/bloglist.rs.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/bloglist.rs.html b/templates/bloglist.rs.html index 98cd171..505f9a7 100644 --- a/templates/bloglist.rs.html +++ b/templates/bloglist.rs.html @@ -8,9 +8,9 @@ <h1>Posts</h1> <p> -<ul> +<ul class="post-list"> @for post in posts { - <li>@post.date.format("%B %d %Y") - + <li class="post-item">@post.date.format("%B %d %Y") - <a href="/@post.link">@post.front_matter.title</a></li> } </ul> |