Created
October 15, 2016 15:59
-
-
Save anilmeena/3ec9307b07089a569e7fb4c1ceb436fd to your computer and use it in GitHub Desktop.
Get a Page’s Title, Content and More With The Handle
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* 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