NAME
Solution::Tag::Include - Include another file
Synopsis
{% include 'somefile.inc %}
Description
If you find yourself using the same snippet of code or text in several templates, you may consider making the snippet an include.
You include static filenames...
Solution::Template->parse("{%include 'my.inc'%}")->render();
...or 'dynamic' filenames (for example, based on a variable)...
Solution::Template->parse('{%include inc%}')->render({inc => 'my.inc'});
Notes
As long as the file is in the ./_includes/
directory. This location restriction may go away in the future but for now, I'll mimic Jekyll (github's Liquid-based template system).
This is a 15m hack and is subject to change ...and may be completly broken.
See Also
Liquid for Designers: http://wiki.github.com/tobi/liquid/liquid-for-designers
Solution's docs on custom filter creation
Author
Sanko Robinson <sanko@cpan.org> - http://sankorobinson.com/
The original Liquid template system was developed by jadedPixel (http://jadedpixel.com/) and Tobias Lütke (http://blog.leetsoft.com/).
License and Legal
Copyright (C) 2009-2012 by Sanko Robinson <sanko@cpan.org>
This program is free software; you can redistribute it and/or modify it under the terms of The Artistic License 2.0. See the LICENSE file included with this distribution or http://www.perlfoundation.org/artistic_license_2_0. For clarification, see http://www.perlfoundation.org/artistic_2_0_notes.
When separated from the distribution, all original POD documentation is covered by the Creative Commons Attribution-Share Alike 3.0 License. See http://creativecommons.org/licenses/by-sa/3.0/us/legalcode. For clarification, see http://creativecommons.org/licenses/by-sa/3.0/us/.
1 POD Error
The following errors were encountered while parsing the POD:
- Around line 119:
Non-ASCII character seen before =encoding in 'Lütke'. Assuming UTF-8