Toggle navigation
Toggle navigation
This project
Loading...
Sign in
open-source-group1
/
animal-Info
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
Eunsu486
2021-05-27 20:01:40 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
feecabaafe8c476f88ecd480b59aa76e22044ef1
feecabaa
1 parent
f61e5129
Add a result page
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
61 additions
and
0 deletions
views/category.ejs
views/result.ejs
views/results/hospital.ejs
views/category.ejs
0 → 100644
View file @
feecaba
<!DOCTYPE html>
<html
lang=
"ko"
>
<head>
<meta
charset=
"UTF-8"
>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1.0"
>
<link
rel=
'stylesheet'
href=
'/vendors/bootstrap/css/bootstrap.min.css'
/>
<link
rel=
'stylesheet'
href=
'/vendors/bootstrap/css/bootstrap-grid.min.css'
/>
<link
rel=
'stylesheet'
href=
'/vendors/bootstrap/css/bootstrap-reboot.min.css'
/>
<link
rel=
'stylesheet'
href=
'/css/category.css'
>
<link
rel=
"preconnect"
href=
"https://fonts.gstatic.com"
>
<link
href=
"https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300&display=swap"
rel=
"stylesheet"
>
<title>
📝 진단 검사
</title>
</head>
<body>
<
%- include('components/locationJumbotron') -%>
<
%- include('components/category') -%>
</body>
</html>
\ No newline at end of file
views/result.ejs
0 → 100644
View file @
feecaba
<!DOCTYPE html>
<html
lang=
"ko"
>
<head>
<meta
charset=
"UTF-8"
>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1.0"
>
<link
rel=
'stylesheet'
href=
'/vendors/bootstrap/css/bootstrap.min.css'
/>
<link
rel=
'stylesheet'
href=
'/vendors/bootstrap/css/bootstrap-grid.min.css'
/>
<link
rel=
'stylesheet'
href=
'/vendors/bootstrap/css/bootstrap-reboot.min.css'
/>
<link
rel=
"preconnect"
href=
"https://fonts.gstatic.com"
>
<link
href=
"https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300&display=swap"
rel=
"stylesheet"
>
<title>
📝 결과
</title>
</head>
<body>
<
%- include(`results/${category}`) -%>
</body>
</html>
\ No newline at end of file
views/results/hospital.ejs
0 → 100644
View file @
feecaba
<h4> 동물병원 현황</h4>
<table class="table">
<thead class="thead-dark">
<tr>
<th>동물병원명</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<%=titles%>
</td>
</tr>
</tbody>
</table>
<p class="sum">총 동물병원 개수 :
<%-hospital_list.length%>
</p>
\ No newline at end of file
Please
register
or
login
to post a comment