forked from fuel/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
91 lines (74 loc) · 3.01 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./assets/css/combined.css">
<script src="http://www.google.com/jsapi" type="text/javascript"></script>
<script type="text/javascript">
var path = './';
</script>
<script src="./assets/js/combined.js"></script>
<title>Fuel Documentation</title>
</head>
<body>
<div id="container">
<header id="header">
<div class="table">
<h1>
<strong>Fuel, a PHP 5.3 Framework</strong>
Documentation
</h1>
<form id="google_search">
<p>
<span id="search_clear"> </span>
<input type="submit" name="search_submit" id="search_submit" value="search" />
<input type="text" value="" id="search_input" name="search_input" />
</p>
</form>
</div>
<nav>
<div class="clear"></div>
</nav>
<a href="#" id="toc_handle">table of contents</a>
<div class="clear"></div>
</header>
<div id="cse">
<div id="cse_point"></div>
<div id="cse_content"></div>
</div>
<div id="main">
<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 id="getting_started">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 id="quick_install">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"><code>$ curl get.fuelphp.com/oil | sh
cd Sites/
oil create blog</code></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>
<h3 id="dev_docs">Development Branch Documentation</h3>
<p>This documentation reflects the latest official Fuel release. For documentation of Fuel's bleeding edge, see our <a href="http://www.fuelphp.com/dev-docs/index.html">Develop Branch Documentation</a>.</p>
</div>
<footer>
<p>
© Fuel Development Team 2010-2011 - <a href="http://fuelphp.com">Fuel</a> is released under the MIT license.
</p>
</footer>
</div>
</body>
</html>