Showing
3 changed files
with
61 additions
and
0 deletions
views/category.ejs
0 → 100644
| 1 | +<!DOCTYPE html> | ||
| 2 | +<html lang="ko"> | ||
| 3 | + | ||
| 4 | +<head> | ||
| 5 | + <meta charset="UTF-8"> | ||
| 6 | + <meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
| 7 | + <link rel='stylesheet' href='/vendors/bootstrap/css/bootstrap.min.css' /> | ||
| 8 | + <link rel='stylesheet' href='/vendors/bootstrap/css/bootstrap-grid.min.css' /> | ||
| 9 | + <link rel='stylesheet' href='/vendors/bootstrap/css/bootstrap-reboot.min.css' /> | ||
| 10 | + <link rel='stylesheet' href='/css/category.css'> | ||
| 11 | + <link rel="preconnect" href="https://fonts.gstatic.com"> | ||
| 12 | + <link href="https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300&display=swap" rel="stylesheet"> | ||
| 13 | + <title>📝 진단 검사</title> | ||
| 14 | +</head> | ||
| 15 | + | ||
| 16 | +<body> | ||
| 17 | + <%- include('components/locationJumbotron') -%> | ||
| 18 | + <%- include('components/category') -%> | ||
| 19 | +</body> | ||
| 20 | + | ||
| 21 | +</html> | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
views/result.ejs
0 → 100644
| 1 | +<!DOCTYPE html> | ||
| 2 | +<html lang="ko"> | ||
| 3 | + | ||
| 4 | +<head> | ||
| 5 | + <meta charset="UTF-8"> | ||
| 6 | + <meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
| 7 | + <link rel='stylesheet' href='/vendors/bootstrap/css/bootstrap.min.css' /> | ||
| 8 | + <link rel='stylesheet' href='/vendors/bootstrap/css/bootstrap-grid.min.css' /> | ||
| 9 | + <link rel='stylesheet' href='/vendors/bootstrap/css/bootstrap-reboot.min.css' /> | ||
| 10 | + <link rel="preconnect" href="https://fonts.gstatic.com"> | ||
| 11 | + <link href="https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300&display=swap" rel="stylesheet"> | ||
| 12 | + <title>📝 결과</title> | ||
| 13 | +</head> | ||
| 14 | + | ||
| 15 | +<body> | ||
| 16 | + <%- include(`results/${category}`) -%> | ||
| 17 | + | ||
| 18 | +</body> | ||
| 19 | + | ||
| 20 | +</html> | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
views/results/hospital.ejs
0 → 100644
| 1 | +<h4> 동물병원 현황</h4> | ||
| 2 | +<table class="table"> | ||
| 3 | + <thead class="thead-dark"> | ||
| 4 | + <tr> | ||
| 5 | + <th>동물병원명</th> | ||
| 6 | + </tr> | ||
| 7 | + </thead> | ||
| 8 | + <tbody> | ||
| 9 | + <tr> | ||
| 10 | + <td> | ||
| 11 | + <%=titles%> | ||
| 12 | + </td> | ||
| 13 | + | ||
| 14 | + </tr> | ||
| 15 | + | ||
| 16 | + </tbody> | ||
| 17 | +</table> | ||
| 18 | +<p class="sum">총 동물병원 개수 : | ||
| 19 | + <%-hospital_list.length%> | ||
| 20 | +</p> | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
-
Please register or login to post a comment