summaryrefslogblamecommitdiff
path: root/templates/bloglist.rs.html
blob: 98cd1714762637d70cf701fcdc31be718b70f9a6 (plain) (tree)


















                                                                               
@use crate::blog::post::Post;
@use super::{header_html, footer_html};

@(posts: Vec<Post>)

@:header_html(Some("Posts"), None)

<h1>Posts</h1>

<p>
<ul>
	@for post in posts {
		<li>@post.date.format("%B %d %Y") -
			<a href="/@post.link">@post.front_matter.title</a></li>
	}
</ul>
</p>

@:footer_html()