이의준

ejs파일로 변환

<!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>
<!-- 이 문서는 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