This repository was archived by the owner on Dec 24, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.php
More file actions
84 lines (78 loc) · 3 KB
/
Copy pathindex.php
File metadata and controls
84 lines (78 loc) · 3 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<?php
include('translations/fr.php');
include('functions.php');
include('./classes/Tools.php');
?>
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8" />
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<title>Générateur de module - PrestaEdit.com</title>
<meta content="IE=Edge" http-equiv="X-UA-Compatible" />
<meta content="width=device-width, initial-scale=1, maximum-scale=1" name="viewport" />
<link href='http://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Raleway' rel='stylesheet' type='text/css'>
<link href="css/font-awesome.min.css" rel="stylesheet" />
<link href="css/base.css" rel="stylesheet" />
<link href="css/layout.css" rel="stylesheet" />
<link href="css/smartWizard.css" rel="stylesheet" />
<script type="text/javascript">
labelNext = <?php echo "'".l('labelNext')." <i class=\"icon-double-angle-right\"></i>'"; ?>;
labelPrevious = <?php echo "'<i class=\"icon-double-angle-left\"></i> ".l('labelPrevious')."'"; ?>;
labelFinish = <?php echo "'<i class=\"icon-download-alt icon-large\"></i> ".l('labelFinish')."'"; ?>;
</script>
<script type="text/javascript" src="js/jquery/jquery-1.7.2.min.js"></script>
<script language="JavaScript" type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.min.js"></script>
<script type="text/javascript" src="js/jquery/plugins/smartWizard/jquery.smartWizard.js"></script>
<script type="text/javascript" src="js/script.js"></script>
</head>
<body>
<div class="main_wrapper">
<header>
<div class="content">
<nav class="head_nav">
<ul class="mainmenu">
<li class="act"><a href="index.php"><i class="icon-home"></i> Home</a></li>
<li class="sep"></li>
<li><a href="index.php?page=generator"><i class="icon-code"></i> Générateur</a></li>
<li class="sep"></li>
<li><a href="index.php?page=about"><i class="icon-question-sign"></i> About</a></li>
</ul>
<div class="menu_indicator"></div>
</nav>
<nav class="mobile_nav">
<a class="menu_toggle" href="javascript:void(0)">Menu</a>
<ul class="mobile_menu">
<li class="act"><a href="index.php"><i class="icon-home"></i> Dashboard</a></li>
</ul>
</nav>
</div>
</header>
<div class="site_container container">
<?php
switch(Tools::getValue('page'))
{
case 'about': include('about.php');
break;
case 'generator': include('generator.php');
break;
default: include('generator.php');
break;
}
?>
</div>
<footer>
<div class="footer">
<p>
<a href="index.php">Home</a>
<i class="icon-plus"></i>
<a href="index.php">Générateur de module</a>
<i class="icon-plus"></i>
<a href="http://www.prestaedit.com" target="_blank">PrestaEdit.com</a>
</p>
</div>
</footer>
</div>
</body>
</html>