hospital.ejs 615 Bytes
<h4>🏥 동물병원 현황</h4>
<table class="table">
    <thead class="thead-dark">
        <tr>
            <th>동물병원명</th>
            <th>도로명주소</th>
        </tr>
    </thead>
    <tbody>
        <%for (var i=0; i <hospital_list.length; i++){%>
            <tr>
                <td>
                    <%=hospital_list[i].title._text%>
                </td>
                <td>
                    <%=hospital_list[i].venue._text%>
                </td>
            </tr>
            <%}%>

    </tbody>
</table>
<p class="sum">총 동물병원 개수 :
    <%-hospital_list.length%>
</p>