data.ejs
2.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!-- data.ejs -->
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Check the Holiday</title>
<link rel="stylesheet" href="../public/css/main.css" type="text/css"> <!--style.css 파일 적용.-->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Tiro+Devanagari+Marathi&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Gowun+Dodum&display=swap" rel="stylesheet">
</head>
<center>
<body>
<div id="title">When Is Next Holiday?</div>
<br><br>
<div class="wrapper">
<div class="circle">
<p class="dday">
<span>
<h2>오늘로부터 가장 가까운 공휴일은</h2>
<h2> <%= data[1][0] %><%= data[1][1] %><%= data[1][2] %><%= data[1][3] %>/<%= data[1][4] %><%= data[1][5] %>/<%= data[1][6] %><%= data[1][7] %></h2>
<h3>[<%= data[0] %>]</h3>
<h1>D - <%= data[2] %></h1>
</span>
</p>
</div>
</div>
<h2> [<%= data[0] %>] 추천 활동</h2> <!--recommend activity 추가파트 시작-->
<div id="activity">
<% if (data[1] == '20220601') { %>
<h2>1. 투표하세요.</h2>
<h2>2. 투표날이 어렵다면 사전투표하세요.</h2>
<% } else if (data[1] == '20220505') { %>
<h2>1. 어린이날 즐기기.</h2>
<h2>2. 놀이공원 </h2>
<h2>3. 서울숲</h2>
<% } else if (data[1] == '20220606') { %>
<h2>1. 현충원 가기.</h2>
<h2>2. 전쟁기념관 방문.</h2>
<h2>3. 어린이날 즐기기.</h2>
<% } else if (data[1] == '20220508') { %>
<h2>절 가기.</h2>
<% } else { %>
<h2>Just Take some rest!.</h2>
<% } %>
</div>
<div id="loading"><div class="spinner"></div></div>
</body>
</center>
</html>