I'm aware of {{ contents }}
You probably mean {{ page.contents }}
- {{ contents }}
alone will render nothing (unless you have defined that variable manually)
Can anyone point me to the definitive list of supported Jekyll Liquid tags?
The "definitive guide" is: https://github.com/mojombo/jekyll/wiki/Template-Data . It lists all the available tags.
But I'm sure there are a lot more
I'm afraid there are not. By default, for a page, you only get page.url
and page.content
. You can also get anything defined on the yaml front. And that's all you can get.
Is there a tag that contains "index" when rendering "index.html"?
page.url
will be index.html
, but there isn't a direct way to get index
alone (unless you define it manually in the yaml front).
{{ content }}
(without the s) – bluesmoon