3214 Posts in 848 Topics by 810 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 334 Views |
-
if (MenuTitle.XML ...

29 September 2011 at 9:27am
Hello, I'd like to target a specific page. I want to load the google maps API on the Contact page.
Just to test if the variable would work, I'm trying in the Page.ss
<% if (MenuTitle.XML == "Contact") %>
<% echo MenuTitle.XML %>
<% end_if %>only to get a Parse error: syntax error, unexpected '}', no matter what I try.
I feel like I'm missing out on something.
I will be using this in the head to load the javascript, and as a body onload attribute.
-
Re: if (MenuTitle.XML ...

29 September 2011 at 1:21pm
Hi Veksen,
Your templating syntax looks wrong, it's a bit different to standard PHP - please review http://doc.silverstripe.org/sapphire/en/topics/templates
Try
<% if MenuTitle = Contact %>
$MenuTitle
<% end_if %>
| 334 Views | ||
|
Page:
1
|
Go to Top |


