templates/blogindex: use <li>, add some of the better comments
This commit is contained in:
parent
c969ed6a2d
commit
b8388e14b9
|
@ -1,26 +1,17 @@
|
||||||
{{ define "title" }}
|
{{ define "title" }}
|
||||||
<title>Blog - Christine Dodrill</title>
|
<title>Blog - Christine Dodrill</title>
|
||||||
|
|
||||||
<style>
|
|
||||||
.blogpost-card {
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
{{ define "content" }}
|
{{ define "content" }}
|
||||||
<h1>Blogposts</h1>
|
<h1>Blogposts</h1>
|
||||||
|
|
||||||
<div class="grid">
|
<p>
|
||||||
{{ range . }}
|
<ul>
|
||||||
<div class="card cell -4of12 blogpost-card">
|
{{ range . }}
|
||||||
<header class="card-header">{{ .Title }}</header>
|
<li>{{ .Date }} - <a href="{{ .Link }}">{{ .Title }}</a></li>
|
||||||
<div class="card-content">
|
{{ end }}
|
||||||
<p>Posted on {{ .Date }} <br> <a href="{{ .Link }}">Read Post</a></p>
|
</ul>
|
||||||
</div>
|
</p>
|
||||||
</div>
|
|
||||||
{{ end }}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<br />
|
<br />
|
||||||
|
|
||||||
|
@ -33,4 +24,33 @@
|
||||||
<li><a href="https://slatestarcodex.com/">Star Slate Codex</a></li>
|
<li><a href="https://slatestarcodex.com/">Star Slate Codex</a></li>
|
||||||
<li><a href="https://shamanic.vision/">Shamanic Vision</a></li>
|
<li><a href="https://shamanic.vision/">Shamanic Vision</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
|
<h2>Selected Commentary on These Blogposts</h2>
|
||||||
|
|
||||||
|
<h3><a href="/blog/experimental-rilkef-2018-11-30">I Put Words on this Webpage so You Have to Listen to Me Now</a></h3>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<blockquote>
|
||||||
|
Top tier satire. Won't be read by anyone who should read it, and will be ignored/laughed at by anyone who does/already agrees.
|
||||||
|
|
||||||
|
Literally preaching to the literal choir.
|
||||||
|
</blockquote>
|
||||||
|
|
||||||
|
<blockquote>
|
||||||
|
Hired.
|
||||||
|
</blockquote>
|
||||||
|
|
||||||
|
<blockquote>
|
||||||
|
It’s things like this that make me realize just how bizarre this profession really is.
|
||||||
|
</blockquote>
|
||||||
|
|
||||||
|
<blockquote>
|
||||||
|
Meanwhile, in two weeks the entire Haskell ecosystem will adapt.
|
||||||
|
</blockquote>
|
||||||
|
|
||||||
|
<blockquote>
|
||||||
|
dont read any of the other posts if u dont want to melt ur brain backwards
|
||||||
|
</blockquote>
|
||||||
|
</p>
|
||||||
|
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
Loading…
Reference in New Issue