더북(TheBook)

이제 기존 addressList 템플릿의 {{#each list}} ... {{/each}} 구문 안의 내용을 {{ > addressListItem}} 코드로 대체한다. addressList 템플릿의 최종 코드는 다음과 같다.

~/Projects/addressBook/client/addressList.html

<template name="addressList">

    <table class="table table-bordered table-condensed table-striped table-hover">

        <thead>

        <tr class="info">

            <th>이름</th>

            <th>전화번호</th>

            <th>이메일</th>

            <th>회사</th>

            <th>생일</th>

            <th>Action</th>

        </tr>

        </thead>

        <tbody>

        {{#each list}}

            {{> addressListItem}}

        {{/each}}

        </tbody>

    </table>

</template>

...생략...


신간 소식 구독하기
뉴스레터에 가입하시고 이메일로 신간 소식을 받아 보세요.