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
302 B 14 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 {{ else }} 11 <p>not logged in</p> 12 <a href="/login">login</a> 13 {{ end }} 14{{end}}