-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpromo.html
More file actions
111 lines (99 loc) · 3.97 KB
/
promo.html
File metadata and controls
111 lines (99 loc) · 3.97 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>CodEX – the new word in websites development</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<!-- Le styles -->
<link href="./css/bootstrap.css" rel="stylesheet">
<style>
body {
padding-top: 60px; /* 60px to make the container go all the way to the bottom of the topbar */
}
</style>
<link href="./css/bootstrap-responsive.css" rel="stylesheet">
<!-- Le HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<div class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</a>
<a class="brand" href="#">CodEX</a>
<div class="nav-collapse">
<ul class="nav">
<li class="active"><a href="/">Home</a></li>
<li><a href="/download">Download</a></li>
<li><a href="/download">Browse on GitHub</a></li>
<li class="dropdown">
<a href="#"
class="dropdown-toggle"
data-toggle="dropdown">
Language: Russian
<b class="caret"></b>
</a>
<ul class="dropdown-menu">
<li><a href="/en">English</a></li>
<li><a href="/ru">Russian</a></li>
</ul>
</li>
</ul>
</div><!--/.nav-collapse -->
</div>
</div>
</div>
<div class='container'>
<div class="hero-unit" style="padding-top:30px">
<div style="float:left;text-align:center;">
<img src="./img/logo.jpg" />
<p>
<a class="btn btn-large btn-success">
<i class="icon-download-alt icon-white"></i> Download version 0.1
</a>
<a class="btn btn-primary btn-large">
Learn more »
</a>
</p>
</div>
<div style="overflow:hidden;padding-top:24px">
<h1>Introducing CodEX</h1>
<p>CodEX is the new generation Database Management System (DMS) based on CodeIgniter – one of the most beautiful and simple php framework. It allows you to rapidly create flexible websites, which can be easily extended. And it's fully <b>free</b> and opensourced. </p>
</div>
<div style="clear:both"></div>
</div>
<div class="row">
<div class="span4">
<h2>DB-driven development</h2>
<p>Now you don't need to write routine code for all usual stuff. Just create component right from adminpanel and you will get ready-to go module on fronted and administrator interface on backend. Easy as pie<br /><br /></p>
<p><a class="btn" href="#">View details »</a></p>
</div>
<div class="span4">
<h2>Based on CodeIgniter</h2>
<p>CodeIgniter is an open source web application framework for use in building dynamic web sites with PHP. It's based on MVC paradigm, really simple to use and extend</p>
<p><a href="http://codeigniter.com" target="blank"><img src="./img/codeigniter.png" /></a></p>
</div>
<div class="span4">
<h2>Uses HMVC-based modules</h2>
<p>CodEX helps you to support your code and transfer modules from one project to another – each module is located in separate directory and has own controllers, models and views. You can easily change modules design with own templates<br /><br /></p>
<p><a class="btn" href="#">View details »</a></p>
</div>
</div>
<hr />
<footer>
<p></p><a href="#">Contact us</a> | <a href="#">Authors</a> | <a href="#">Discussions</a></p>
</footer>
</div>
<script src="./js/jquery.js"></script>
<script src="./js/bootstrap-collapse.js"></script>
<script src="./js/bootstrap-dropdown.js"></script>
</body>
</html>