this repo has no description
1{{define "title"}}timeline{{end}} 2 3{{define "content"}} 4 <h1>timeline</h1> 5 6 {{ if .User }} 7 <p>logged in as {{ .User.Handle }}</p> 8 <a href="/settings">settings</a> 9 <a href="/knots">knots</a> 10 <a href="/repo/new">add repos</a> 11 {{ else }} 12 <p>not logged in</p> 13 <a href="/login">login</a> 14 {{ end }} 15{{end}}