21 lines
635 B
PHP
21 lines
635 B
PHP
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Welcome to the Anvil Framework</title>
|
|
</head>
|
|
<body style="text-align:left; padding-left:50px;">
|
|
Welcome to the Anvil Framework!
|
|
Everything is pretty self explanatory.
|
|
<ul>
|
|
<li>Controllers go in the controllers directory</li>
|
|
<li>Models go in the models directory</li>
|
|
<li>Views go in the views directory</li>
|
|
<li>Libraries/Add-ons go in the libraries directory</li>
|
|
</ul>
|
|
Define your main controller in the config.php file.<br />
|
|
That is the controller that will run if no other controller is specified.<br />
|
|
<br />
|
|
For more help, view the help
|
|
</body>
|
|
</html>
|