Handlebars Nested if

Check nested if works

HTML

<script src="http://builds.handlebarsjs.com.s3.amazonaws.com/handlebars.min-c90cfe2.js"></script>
<script id="food-template" type="text/x-handlebars-template">
 {{#if insidePickup}}
                        <td valign="top">
						{{#if meetingInstructions}}
                            {{meetingInstructions}}
						{{else}}
						    Meet the chauffeur at baggage claim/outside customs
                        {{/if}}
                    
					
          
                        </td>
                  {{else}}
					<td valign="top">
						{{#if meetingInstructions}}
							{{meetingInstructions}}
						{{else}}
							Call the chauffeur when you are ready at 23423423
						{{/if}}
					</td>

                  {{/if}}
</script>

<div id="output"></div>

JavaScript

var data= 
{
 
         "meetingInstructions":"44444433333334444444444",
         "insidePickup": "",
         "meeting_info_alert": "asda"
 
 
};


var htmltmpl = $("#food-template").html();
var template = Handlebars.compile(htmltmpl);
$('#output').html(template(data));