2021-09-03 04:31:27 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<title>Blog</title>
|
2021-09-04 00:55:29 +00:00
|
|
|
<link rel="icon" href="data:,">
|
2022-07-07 05:05:18 +00:00
|
|
|
<link rel="stylesheet" href="_/sakura.css"/>
|
2021-09-04 00:55:29 +00:00
|
|
|
<style>
|
|
|
|
.tag {
|
|
|
|
font-size: .7em;
|
|
|
|
}
|
|
|
|
.right {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
.title {
|
|
|
|
text-align: center;
|
|
|
|
font-size: 2.5em;
|
|
|
|
}
|
|
|
|
</style>
|
2021-09-03 04:31:27 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
2021-09-04 00:55:29 +00:00
|
|
|
<h1 class="title">Blog Posts</h1>
|
|
|
|
{{range .Blog.SortedPosts}}
|
|
|
|
<h5>
|
2021-09-03 04:31:27 +00:00
|
|
|
<a href="{{.Slug}}"><strong>{{.Title}}</strong></a><br/>
|
2021-12-26 04:56:32 +00:00
|
|
|
{{if .Author}}<small>@{{.Author}}</small>{{end}}<span class="right">{{.Date.Format "Jan 2, 2006"}}</span><br/>
|
2021-09-04 00:55:29 +00:00
|
|
|
{{range .Tags}}<code class="tag">{{.}}</code> {{end}}
|
|
|
|
</h5>
|
2021-09-03 04:31:27 +00:00
|
|
|
<hr/>
|
|
|
|
{{end}}
|
|
|
|
</body>
|
|
|
|
</html>
|