This repository has been archived by the owner on Jan 21, 2025. It is now read-only.
forked from fuel/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (52 loc) · 2.06 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Fuel Documentation</title>
<link href="assets/css/main.css" media="screen" rel="stylesheet" />
<script type="text/javascript" src="assets/js/jquery-1.4.4.js"></script>
<script type="text/javascript" src="assets/js/nav.js"></script>
<script type="text/javascript">
$(function() {
show_nav('basic');
});
</script>
</head>
<body>
<header>
<h1>Fuel Documentation</h1>
</header>
<div id="main-nav"></div>
<section id="content">
<h2>Welcome to Fuel</h2>
<p>
Fuel is a simple, flexible, community driven PHP 5 web framework. It was born out of the frustrations people have with the current available frameworks and developed
with support from a community of developers. Fuel is extremely portable, works on almost any server and prides itself on clean syntax.
</p>
<h3>Getting started</h3>
<ul>
<li>Step #1: <a href="installation/download.html">Download</a></li>
<li>Step #2: <a href="installation/instructions.html">Install</a></li>
<li>Step #3: <a href="general/controllers/base.html">Create sexy code</a></li>
</ul>
<h3>Optional: Quick Installation</h3>
<p>If you value your time and want to get things up and running in seconds instead of minutes you can use our quick installer. This will be a single line you write into CLI
which gives you a very basic version of Oil. From there you can create new full applications of Fuel.
</p>
<pre class="cli">$ curl get.fuelphp.com/oil | sh
cd Sites/
oil create blog</pre>
<p>
This will create a new Fuel "project" or application for you to start working with. If you were to then run some <a href="packages/oil/generate.html">scaffolding</a>
you'd have a fully functional blog in minutes.
</p>
<p class="note">For now this requires Git, but that should be a simple installation and the benefits really outweigh the effort.</p>
</section>
<section id="footer">
<p>
<a href="http://fuelphp.com">Fuel</a> is released under the MIT license.<br />
© 2010 - 2011 Fuel Development Team
</p>
</section>
</body>
</html>