xesite/templates/blogindex.html

60 lines
1.6 KiB
HTML
Raw Normal View History

{{ define "title" }}
2018-12-02 02:00:47 +00:00
<title>{{ trans "header" "blog" }} - {{ trans "header" "name" }}</title>
{{ end }}
{{ define "content" }}
2018-12-02 02:00:47 +00:00
<h1>{{ trans "blog" "index_title" }}</h1>
<p>
<ul>
{{ range . }}
2018-12-02 02:00:47 +00:00
<li>{{ trans "blog" "posted_on" .Date }} - <a href="{{ .Link }}">{{ .Title }}</a></li>
{{ end }}
</ul>
</p>
2018-08-24 23:13:44 +00:00
<br />
2018-12-02 02:00:47 +00:00
<h2>{{ trans "blog" "blogroll" }}</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>
2018-12-02 02:00:47 +00:00
<h2>{{ trans "blog" "comments" }}</h2>
<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.
2018-12-02 02:00:47 +00:00
<br />
Literally preaching to the literal choir.
</blockquote>
<blockquote>
Hired.
</blockquote>
<blockquote>
Its 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 }}