home.handlebars
574 Bytes
<h1>Welcome to Meadowlark Travel</h1>
{{>weather}}
<ul>
{{#each tours}}
{{! 알려져서는 안되는 주석}}
<!-- 다른 사람이 봐도 되는 주석-->
<li>
{{name}} - {{price}}
{{! 여기 이해안된다.}}
{{#if ../currencies}}
({{../../currency.abbrev}})
{{/if}}
</li>
{{/each}}
</ul>
{{! if의 반대래, unless는...}}
{{#unless currencies}}
<p>All prices in {{currency.name}}.</p>
{{/unless}}
{{#if specialsUrl}}
<p>Check out our special at <a href="{{specialsUrl}}">{{specialsUrl}}!</a></p>
{{/if}}