index — crispy-website @ 287959ae291c4d7562ffb7e2de01e4f7febac886

My personal homepage (very crispy)

templates/blogposts.gotmpl (view raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
<!doctype html>
<html lang="en">
  <head>
    <title>crispy blog</title>
    <link rel="stylesheet" href="../static/global.css" />
    <link rel="stylesheet" href="../static/blogPage.css" />
    <link rel="icon" type="image/png" href="../static/banan_icon.png" />
</head>
<body>
<h1>Crispy Blog</h1>
<ul class=bloglist>
    {{range .}}
    <li>{{.Date}} <a href="{{.URL}}">{{.Title}}</a></li>
    {{end}}
</ul>
</body>