-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathabout.html
More file actions
165 lines (129 loc) · 7.55 KB
/
about.html
File metadata and controls
165 lines (129 loc) · 7.55 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ness PHP Framework | Docs</title>
<link rel="stylesheet" type="text/css" href="assets/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="assets/fnt-aw/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
</head>
<body>
<div class="wrapper">
<!-- Sidebar -->
<nav id="sidebar">
<div id="sidebar-header" class="text-center">
<br>
<a href="index.html" id="logo-area-link">
<img src="assets/img/nessphp_bordered.png" alt="Ness PHP Documentation" width="70%"/>
<h3>Ness PHP</h3>
<h4>Documentation</h4>
</a>
<a href="index.html" class="btn btn-light btn-sm" style="width: 100%;">
<i class="fa fa-angle-left" aria-hidden="true"></i> Back
</a>
</div>
<br>
<!--Load LATER-->
<div id="sidebar-loader" class="sidebar-contents">
</div>
</nav>
<div id="content">
<!--Nabvar:start-->
<nav class="navbar navbar-expand-lg">
<div class="container-fluid">
<button id="sidebarCollapse" class="btn-circle">
<i class="fa fa-bars" aria-hidden="true"></i>
</button>
<ul class="nav navbar-nav">
<li class="nav-item">
<a href="index.html" class="navbar-text-header">
Ness PHP Framework
</a>
</li>
</ul>
<button class="btn-circle d-inline-block d-lg-none ml-auto" type="button" data-toggle="collapse" data-target="#headernav-links" aria-controls="headernav-links" aria-expanded="false" aria-label="Toggle Menu">
<i class="fa fa-ellipsis-v" aria-hidden="true"></i>
</button>
<div class="collapse navbar-collapse" id="headernav-links">
<ul class="nav navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link " href="https://nessphp.github.io/">
<i class="fa fa-terminal" aria-hidden="true"></i>
Ness PHP
</a>
</li>
<li class="nav-item">
<a class="nav-link " href="https://github.com/nessphp/application">
<i class="fa fa-github" aria-hidden="true"></i>
GitHub
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="support.html">
<i class="fa fa-heart" aria-hidden="true"></i>
Support
</a>
</li>
</ul>
</div>
</div>
</nav>
<!--Nabvar:end-->
<!-- ========================content:start======================== -->
<div id="holder">
<span class="pageheader">About Ness PHP Framework</span>
<br>
<div class="text-center">
<img src="assets/img/nessphp_bordered.png" height="180px">
</div>
<br><br>
<!--start: topic-->
<h4>Introduction <small><a href="#content">#top</a></small></h4>
<p>
Welcome to Ness PHP Framework. Ness is an excellent but straightforward application
development framework. Ness PHP Framework aims to help you in your coding process by
speeding up development with ready to use libraries that require minimal configuration.
The structure was developed based on the MVC architectural design. You can do all your
database related operations with the <span class="badge badge-success">model</span> structure and create your views with the help
of <span class="badge badge-success">view</span> You can associate the relationship between all these two by using the <span class="badge badge-success">controller</span>
structure.
</p>
<br>
<!--end: topic-->
<!--start: topic-->
<h4>Purpose of Development <small><a href="#content">#top</a></small></h4>
<p>
Ness PHP Framework started as a personal project(Previously; limeberry). Every software
or programming language requires some effort to learn, and we are aiming to minimize
this process in our framework. It is easy to learn and code a new project with Ness PHP,
we recommend you to give it a try.
</p>
<br>
<!--end: topic-->
<!--start: topic-->
<h4>Who is it for? <small><a href="#content">#top</a></small></h4>
<p>
In simple words; <b>it is for you.</b>
<ul>
<li>It is lightweight.</li>
<li>It is free to use.</li>
<li>It is free(also easy) to extend or develop as your personal needs.</li>
<li>Ness Framework uses mvc architecture.</li>
<li>An easy to use template engine.</li>
<li>Continuously Improving</li>
</ul>
And much more to explore.
</p>
<p>Let's start learning and exploring the framework. In next topics you can find how to install and configure Ness PHP project.</p>
<br>
<!--end: topic-->
</div>
<!-- ========================content:end======================== -->
</div>
</div>
<script src="assets/js/bootstrap.min.js"></script>
<script src="assets/js/nessphp.js"></script>
</body>
</html>