-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
41 lines (29 loc) · 1.1 KB
/
index.php
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
<?php
session_start();
header('Content-Type: text/html; charset=utf-8');
?>
<!DOCTYPE html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>루메스 보드</title>
<link rel="stylesheet" href="./css/index.css">
<link rel="stylesheet" href="./css/navbar.css">
<link rel="stylesheet" href="./css/font.css">
<link rel="shortcut icon" href="./favicon/favicon.ico">
<!-- CDN 관련 자료들을 한번에 관리 -->
<?php include('./common/resource.html') ?>
</head>
<body>
<!-- 네비게이션 바 -->
<?php include("navbar.php"); ?>
<!-- 보드(게시판) -->
<?php include("board/writeMessages.php"); ?>
<?php include("board/showMessages.php"); ?>
<script src="./board/js/urlify.js"></script>
<?php if(isset($_SESSION['id'])){ ?>
<!-- session이 있을 경우 필요한 파일 -->
<script src="./board/js/hotkeyToSendMessage.js"></script>
<?php } ?>
</body>
</html>