home.handlebars 576 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>You can also check my personal <a href="{{specialsUrl}}">Blog(Korean)</a></p>
{{/if}}