Copied over the templates from blog/ and set up permalinks. Drew some bespoke star and retweet icons. Wrote a script to import data from the archive.
15 lines
536 B
HTML
15 lines
536 B
HTML
{{ define "main" }}
|
|
<article class=tweet>
|
|
{{ .Content }}
|
|
<footer>
|
|
<ul class=metadata>
|
|
<li class=timestamp>
|
|
{{ .Date | time.Format ":date_full" }},
|
|
{{ .Date | time.Format ":time_short" }}
|
|
</li>
|
|
<li class=fav><img src="/images/star-unfilled.png" width=12 height=l2> {{ .Params.tweet.tweet.favorite_count }}</li>
|
|
<li class=rt><img src="/images/retweet.png" width=14 height=14> {{ .Params.tweet.tweet.retweet_count }}</li>
|
|
</ul>
|
|
</footer>
|
|
</article>
|
|
{{ end }}
|