diff --git a/README.md b/README.md
index 41fd492dbfc3a405bfa192933cffe66186a99283..7965c946b4f382c28da6f02f6557809a57c3e546 100644
--- a/README.md
+++ b/README.md
@@ -89,6 +89,61 @@ `config.yaml` file. RSS feed gets generated this way. `template` field tells
generator which file in `templates` folder to use and `url` tells generator
what the file should be called when its saved.
+## Entities available in template
+
+### Config
+
+```txt
+Config {
+ Title string
+ Description string
+ BaseURL string
+ Language string
+ Highlighting string
+ Minify bool
+}
+```
+
+Using it inside of a template.
+
+```html
+
{{ .Config.Language }}
+```
+
+### Page
+
+```txt
+Page {
+ Filepath string
+ Raw string
+ HTML template.HTML
+ Text string
+ Summary string
+ Meta map[string]interface{}
+ Title string
+ Type string
+ RelPermalink string
+ Created time.Time
+ Draft bool
+}
+```
+
+Using it inside of a template.
+
+```html
+{{ range .Pages }}
+ {{ if eq .Type "post" }}
+
+ {{ .Title }}
+ {{ .Created.Format "Mon, 02 Jan 2006 15:04:05 -0700" }}
+
+ {{ end }}
+{{ end }}
+```
+
+That `.Format` shenanigas are used for formatting `time.Time` type. You can read
+more about it on https://gosamples.dev/date-time-format-cheatsheet/.
+
## License
[jbmafp](https://github.com/mitjafelicijan/jbmafp) was written by [Mitja