Hi,
First post: great software, just trying to get on the curve.
I have a footer:
<div id="footer">
<div class="footer-i">
<a href="http://{path={my_template_group}/rss_2.0}">RSS 2.0</a> . <a href="http://{path={my_template_group}/atom}">Atom</a> .
<a href="http://validator.w3.org/check?uri=referer" title="Valid XHTML">XHTML</a> . <a href="http://jigsaw.w3.org/css-validator/check/referer" title="Valid CSS">CSS</a>
The original template for this web site was designed by <a href="http://orangescale.com/">Thomas Arie Setiawan</a>
</div>
</div>
that returns this valid url for the rss link:
<a href="http://wmscounseling.org/index.php/6th-grade/rss_2.0">http://wmscounseling.org/index.php/6th-grade/rss_2.0</a>
When I put the same footer code into the "footer" template in the template group "code-snippets", and then put the following code in place of the entire footer code on the 6th-grade page template:
(embed="code-snippets/footer"}
I get this invalid url:
<a href="http://wmscounseling.org/index.php/{my_template_group//rss_2.0}">http://wmscounseling.org/index.php/{my_template_group//rss_2.0}</a>
This happens even if I add this variable to the embed:
(embed="code-snippets/footer" my_template_group="{my_template_group}"}
What am I not understanding? (I'm having similar problems with a nested header embed, etc.)
Thanks for any help.EDIT: Added code coloring.