-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (29 loc) · 919 Bytes
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>Comuns Plugins</title>
<link href="css/main.css" type="text/css" rel="stylesheet"/>
<link rel="icon" type="image/png" href="images/favicon.png"/>
<script src="script/main.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
</head>
<body>
<div id="top">
<img src="images/main_bg.png" id="background">
</div>
<div class="menu">
<button id="i_home" class="li" onclick="loadDoc('home')">Home</buttons>
<button id="i_plugins" class="li">Plugins</buttons>
<button id="i_licence" class="li">License</buttons>
<button id="i_contact" class="li">Contact</buttons>
</div>
<div class="post_body" id="post_area">
<div es-include-html="home.html"></div>
</div>
<script>
includeHTML();
pageChange();
loadDoc('home')
</script>
</body>
</html>