diff options
author | Cara Salter <cara@devcara.com> | 2021-12-22 14:02:12 -0500 |
---|---|---|
committer | Cara Salter <cara@devcara.com> | 2021-12-22 14:02:23 -0500 |
commit | 995b7ebe2552c9db528365e7ccc5a331523ac50c (patch) | |
tree | 610959206aba5066b91c6c6492d9c0669c8c6946 /templates/bloglist.rs.html | |
parent | e362200d1a61e3d858b69c2448928e799912db5e (diff) | |
download | site-995b7ebe2552c9db528365e7ccc5a331523ac50c.tar.gz site-995b7ebe2552c9db528365e7ccc5a331523ac50c.zip |
Customize post listings
Diffstat (limited to 'templates/bloglist.rs.html')
-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> |