The data available for you in `toot.tmpl` is two structs. The first one is the `Toot`-struct, you can see all fields in [./feed.go](./feed.go). The second one is the `StyleConfig`-struct. You can find the fields in [./config.go](./config.go).
The data available for you in `toot.tmpl` is two structs. The first one is the `Toot`-struct, you can see all fields in [./ui/item_status.go](./ui/item_status.go). The second one is the `Style`-struct. You can find the fields for style in [./config/config.go](./config/config.go).
You acces them with `.Toot` and `.Style` in your template file.
The data available in `user.tmpl` is almost the same. You still have the
`StyleConfig` but instead of `Toot` you have a struct named `User`. You can see
all fields in [./feed.go](./feed.go).
`Style` but instead of `Toot` you have a struct named `User`. You can see
all fields in [./ui/item_user.go](./ui/item_user.go).
## Password manager for secrets
If you run `pass`, `gopass` or something similar you can protect your secrets.