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-10 12:17:08 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
87ddc2d62daf04a345a077ae19acabc788d3f1f2
87ddc2d6
1 parent
4626a3b9
ejs파일로 변환
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
63 deletions
views/Index.html
views/timetable.html
views/Index.html
deleted
100644 → 0
View file @
4626a3b
<!doctype html>
<html>
<head>
<title>
BUS TT
</title>
<meta
charset=
"utf-8"
>
<style
type=
"text/css"
>
a
{
text-decoration
:
none
}
/* 하이퍼링크 밑줄 미적용
a { color:red; 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
style=
"padding:0 0 0 20px;"
>
사색의 광장 Bus Time Table 조회 서비스에 오신 것을 환영합니다.
</h2>
<p
style=
"padding:0 0 0 20px;"
>
이곳에는 사색의 광장에서 출발하는 모든 버스의 정보가 있습니다.
</p>
<br><br>
<h2
style=
"padding:0 0 0 20px;"
>
버스별 시간표 조회
</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>
<br>
<ul>
<li><a
href=
"http://localhost:23023/timetable?busNum=9"
style=
"font-size:2em;"
>
9
</a></li>
<li><a
href=
"http://localhost:23023/timetable?busNum=1112"
style=
"font-size:2em;"
>
1112
</a></li>
<li><a
href=
"http://localhost:23023/timetable?busNum=5100"
style=
"font-size:2em;"
>
5100
</a></li>
<li><a
href=
"http://localhost:23023/timetable?busNum=7000"
style=
"font-size:2em;"
>
7000
</a></li>
</ul>
<br>
<p>
html파일임
</p>
</body>
</html>
views/timetable.html
deleted
100644 → 0
View file @
4626a3b
<!-- 이 문서는 base.js에 timetableHTML로 저장되어 있음. 따라서 이 문서는 직접적으로 사용하지 않음-->
<!doctype html>
<html>
<head>
<title>
Time Table
</title>
<meta
charset=
"utf-8"
>
<style
type=
"text/css"
>
a
{
text-decoration
:
none
}
</style>
</head>
<body>
<h1><a
href=
"Index.html"
><p
style=
"text-align:center;"
>
BTT
</p></a></h1>
<br>
<h2>
0000 BUS Time Table
</h2>
<p>
타임테이블 출력 ~~~~
</p>
</body>
</html>
\ No newline at end of file
Please
register
or
login
to post a comment