이의준

Index.html 파일 ejs로 변환

<!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