-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
41 lines (41 loc) · 1.04 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
$myUrl = $_SERVER['REQUEST_URI'];
$backUrl = $myUrl . 'back/public/';
$wpUrl = $myUrl . 'wp/';
$psUrl = $myUrl . 'ps/';
$ucUrl = $myUrl . 'uc/';
?><!doctype html>
<html>
<head>
<title>Demo</title>
<link rel="stylesheet" href="<?=$backUrl ?>packages/semantic/css/semantic.min.css" />
<script src="<?=$backUrl ?>packages/jquery/jquery.js"></script>
<script src="<?=$backUrl ?>packages/semantic/js/semantic.min.js"></script>
</head>
<body>
<div class="ui grid">
<div class="row">
<a class="ui red inverted button" href="<?=$backUrl ?>">
<i class="settings icon"></i>
Service
</a>
</div>
<div class="row">
<div class="ui buttons">
<a class="ui fluid teal button" href="<?=$wpUrl ?>">
<i class="angle right icon"></i>
Wordpress
</a>
<a class="ui fluid green button" href="<?=$psUrl ?>">
<i class="angle right icon"></i>
PrestaShop
</a>
<a class="ui fluid blue button" href="<?=$ucUrl ?>">
<i class="angle right icon"></i>
UCommerce
</a>
</div>
</div>
</div>
</body>
</html>