xesite/templates/blogindex.html

37 lines
904 B
HTML
Raw Normal View History

{{ define "title" }}
<title>Blog - Christine Dodrill</title>
<style>
.blogpost-card {
text-align: center;
}
</style>
{{ end }}
{{ define "content" }}
<h1>Blogposts</h1>
<div class="grid">
{{ range . }}
<div class="card cell -4of12 blogpost-card">
<header class="card-header">{{ .Title }}</header>
<div class="card-content">
<p>Posted on {{ .Date }} <br> <a href="{{ .Link }}">Read Post</a></p>
</div>
</div>
{{ end }}
</div>
2018-08-24 23:13:44 +00:00
<br />
<h2>Other Blogs I Find Interesting</h2>
<ul>
<li><a href="https://write.as/excerpts/">Excerpts</a></li>
<li><a href="https://heartmender.writeas.com/">Heartmender</a></li>
<li><a href="https://celestialboon.github.io/">CelestialBoon</a></li>
<li><a href="https://slatestarcodex.com/">Star Slate Codex</a></li>
<li><a href="https://shamanic.vision/">Shamanic Vision</a></li>
</ul>
{{ end }}