Created
December 9, 2012 18:29
-
-
Save farrelley/4246384 to your computer and use it in GitHub Desktop.
This file contains 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
# Page | |
--- | |
layout: xyz | |
title: Test Post | |
some_id: ABC | |
--- | |
Lorem ipsum dolor sit amet, consectetur adipiscing elit. | |
# template | |
--- | |
layout: layout | |
--- | |
<div class="span12"> | |
<div class="span6"> | |
{{ content }} | |
</div> | |
<div class="span6"> | |
{% assign this_variable = page.some_id %} | |
{% liquid_tag_plugin this_variable %} | |
</div> | |
</div> | |
# When I write out the variable in the plugin i was hoping to get ABC but I am getting this_variable. Is there a way to pass in a Page Variable into the template that calls a Liquid Tag Plugin? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment