forked from kyechan99/KGSHC
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
40 lines (35 loc) · 1.01 KB
/
index.php
File metadata and controls
40 lines (35 loc) · 1.01 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
<?php
require_once $_SERVER['DOCUMENT_ROOT'].'/preset.php';
include $_SERVER['DOCUMENT_ROOT'].'/header.php';
?>
<br/>
<div class="container">
<div class="row">
<div class="col-md-2 col-md-offset-2">
<img class="circular--square" width="250px" height="250px" src="http://<?php echo $_SERVER['HTTP_HOST'];?>/images/logo.png">
</div>
<div class="col-md-6 col-md-offset-1">
<h2>KGSH Community</h2>
<br/>
<p>KGSH 학생들의 커뮤니티 사이트 입니다.</p>
</div>
</div>
<br/><br/>
<div class="row">
<div class="col-md-12 col-md-offset-4">
<h4>위 사이트는 <a href="https://github.com/kyechan99/KGSHC" target="_blank">오픈소스</a> 프로젝트 입니다.</h4>
</div>
</div>
<br/><br/>
<div class="row">
<div class="col-md-2 col-md-offset-2">
</div>
</div>
<br/><br/>
</div>
<br/>
<br/>
<br/>
<?php
include $_SERVER['DOCUMENT_ROOT'].'/footer.php';
?>