Skip to content

Instantly share code, notes, and snippets.

@anilmeena
Created October 15, 2016 15:59
Show Gist options
  • Select an option

  • Save anilmeena/3ec9307b07089a569e7fb4c1ceb436fd to your computer and use it in GitHub Desktop.

Select an option

Save anilmeena/3ec9307b07089a569e7fb4c1ceb436fd to your computer and use it in GitHub Desktop.
Get a Page’s Title, Content and More With The Handle
/* Get a Page’s Title, Content and More With The Handle */
/* Method 1 */
{{ pages['about-us'].title }}
{{ pages['about-us'].content }}
/* Method 2 */
{% assign my_var = "about-us" %}
{{ pages[my_var].title }}
{{ pages[my_var].content }}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment