Toggle navigation
Toggle navigation
This project
Loading...
Sign in
홍용민
/
BusTime
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
이의준
2021-06-09 02:06:01 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
613a45f1cd462c6688e1ec7e21f4af9ead50bece
613a45f1
1 parent
7a2d116c
Index.html 파일 ejs로 변환
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
44 additions
and
0 deletions
views/index.ejs
views/index.ejs
0 → 100644
View file @
613a45f
<!doctype html>
<html>
<head>
<title>
BUS TT
</title>
<meta
charset=
"utf-8"
>
<style
type=
"text/css"
>
a
{
text-decoration
:
none
}
</style>
</head>
<body>
<h1><p
style=
"text-align:center;"
>
BTT
</p></h1>
<br>
<link
rel=
'stylesheet'
type=
'text/css'
href=
'/css/style.css'
/>
<h2>
사색의 광장 Bus Time Table 조회 서비스에 오신 것을 환영합니다.
</h2>
<p>
이곳에는 사색의 광장에서 출발하는 모든 버스의 정보가 있습니다.
</p>
<br><br>
<h2>
버스별 시간표 조회
</h2>
<div
style=
"padding:0 0 0 20px;"
><script>
<%
var
date
=
new
Date
();
>
<%
var
yyyy
=
date
.
getFullYear
();
>
<%
var
mm1
=
date
.
getMonth
()
+
1
;
>
<%
var
dd
=
date
.
getDate
();
>
<%
var
hh
=
date
.
getHours
();
>
<%
var
mm2
=
date
.
getMinutes
();
>
<%
document
.
write
(
yyyy
+
"년 "
+
mm1
+
"월 "
+
dd
+
"일 오늘 운행하는 버스들 "
);
>
<%
document
.
write
(
"( "
+
hh
+
"시 "
+
mm2
+
"분 기준 )"
);
>
</script>
</div>
<ul>
<li><a
href=
"http://localhost:23023/timetable?busNum=5100"
>
5100
</a></li>
<li><a
href=
"http://localhost:23023/timetable?busNum=M5107"
>
M5107
</a></li>
<li><a
href=
"http://localhost:23023/timetable?busNum=9"
>
9
</a></li>
<li><a
href=
"http://localhost:23023/timetable?busNum=7000"
>
7000
</a></li>
<li>
etc
</li>
</ul>
<br>
<p>
설명
</p>
</body>
</html>
\ No newline at end of file
Please
register
or
login
to post a comment