This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

core / appview / pages / timeline.html
340 B 15 lines
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}}