index — crispy-website @ 54b8113aebf29ce57daf2678e756924c16fce09b

My personal homepage (very crispy)

templates/blogindex.html.gotmpl (view raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
<!doctype html>
<html lang="en">
  <head>
    <title>crispy blog</title>
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="stylesheet" href="../static/css/global.css" />
    <link rel="stylesheet" href="../static/css/center.css" />
    <link rel="icon" type="image/png" href="/static/images/banan_icon.png" />
</head>
<body>
  <div>
    <h1>crispy blog</h1>
      {{range .}}
        <p>{{.Date}} <a href="{{.URL}}">{{.Title}}</a></p>
      {{end}}
  </div>
  <div>
    <a href="/en/blog/rss.xml">RSS</a>
    <br>
    <a href="/en/blogrecs">recs</a>
  </div>
</body>