forked from smu-nity/SMUNITY-FE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreference.html
35 lines (34 loc) · 1.39 KB
/
reference.html
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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1280">
<link rel="stylesheet" href="static/css/style.css?date=0815">
<link rel="icon" href="static/img/favicon.ico">
<!-- 웹 참조-->
<script src="//code.jquery.com/jquery-latest.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<script src="https://kit.fontawesome.com/e8a335040d.js" crossorigin="anonymous"></script>
<script src="static/js/includeHTML.js"></script>
<!-- 웹 폰트 참조-->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Courgette&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;500&display=swap" rel="stylesheet">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-219523848-1"></script>
<title>Please Graduate</title>
</head>
<body>
<div include-html="reference/navbar.html"></div>
<div include-html="reference/footer.html"></div>
</body>
<script>
includeHTML();
function logout() {
var back_head = confirm('✋ 정말 로그아웃 하시겠습니까? ✋');
if (back_head) {
location.href = '/f_logout/';
}
}
</script>
</html>