This repository has no description
0

Configure Feed

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

core / appview / pages / templates / onboarding / welcome.html
352 B 13 lines
1{{ define "title" }}Welcome · Tangled{{ end }} 2 3{{ define "content" }} 4 {{ if eq .Step 0 }} 5 {{ template "onboarding/profile" . }} 6 {{ else if eq .Step 1 }} 7 {{ template "onboarding/social" . }} 8 {{ else if eq .Step 2 }} 9 {{ template "onboarding/keys" . }} 10 {{ else }} 11 {{ template "onboarding/finish" . }} 12 {{ end }} 13{{ end }}