-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgraphism.php
55 lines (42 loc) · 1.08 KB
/
graphism.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html>
<?php
include("head.php");
require("token.php");
include("functions.php");
?>
<link rel="stylesheet" type="text/css" href="lib/chosen-1.4.2/chosen.css">
<body>
<script src="js/jquery-3.1.1.min.js"></script>
<script type="text/javascript" src="lib/chosen-1.4.2/chosen.jquery.min.js"></script>
<script type="text/javascript" src="node_modules\lightgallery.js\dist\js\lightgallery.min.js"></script>
<script type="text/javascript" src="js/graphism.js"></script>
<section id="graphism">
<div id="sidebar" class="col-md-3">
<?php
include("header.php");
include("navigation.php"); ?>
<!-- <div id="sublinks">
<span>Avatars & icons</span>
<span>Avatars & icons</span>
<span>Avatars & icons</span>
<span>Avatars & icons</span>
</div>
-->
<div class="sublinks">
<?php
printSublinks();
?>
</div>
</div>
<div id="creation_content" class="col-md-9">
<?php include("gallery.php"); ?>
<div class="sublinks">
<?php
printSublinks();
?>
</div>
</div>
</section>
</body>
</html>