2017-05-20 22:06:30 +00:00
|
|
|
{{ define "title" }}
|
|
|
|
<title>Blog - Christine Dodrill</title>
|
|
|
|
|
|
|
|
<style>
|
|
|
|
.blogpost-card {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{ define "content" }}
|
2018-08-24 23:10:18 +00:00
|
|
|
<h1>Blogposts</h1>
|
|
|
|
|
2017-05-20 22:06:30 +00:00
|
|
|
<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:10:18 +00:00
|
|
|
|
|
|
|
<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>
|
2017-05-20 22:06:30 +00:00
|
|
|
{{ end }}
|