diff options
| author | Christine Dodrill <me@christine.website> | 2018-12-01 16:33:42 -0800 |
|---|---|---|
| committer | Christine Dodrill <me@christine.website> | 2018-12-01 16:33:42 -0800 |
| commit | b8388e14b9ed7af30361f3312d4f2a0d5057143c (patch) | |
| tree | 9c5d03e2fa0045f4ad49603794becce123e33d68 /templates | |
| parent | c969ed6a2da4adadad8502af85bcddefbfb4a7e8 (diff) | |
| download | xesite-b8388e14b9ed7af30361f3312d4f2a0d5057143c.tar.xz xesite-b8388e14b9ed7af30361f3312d4f2a0d5057143c.zip | |
templates/blogindex: use <li>, add some of the better comments
Diffstat (limited to 'templates')
| -rw-r--r-- | templates/blogindex.html | 52 |
1 files changed, 36 insertions, 16 deletions
diff --git a/templates/blogindex.html b/templates/blogindex.html index 5527816..c173942 100644 --- a/templates/blogindex.html +++ b/templates/blogindex.html @@ -1,26 +1,17 @@ {{ 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> +<p> + <ul> + {{ range . }} + <li>{{ .Date }} - <a href="{{ .Link }}">{{ .Title }}</a></li> + {{ end }} + </ul> +</p> <br /> @@ -33,4 +24,33 @@ <li><a href="https://slatestarcodex.com/">Star Slate Codex</a></li> <li><a href="https://shamanic.vision/">Shamanic Vision</a></li> </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 }} |
