Skip to content

Latest commit

 

History

History
45 lines (36 loc) · 875 Bytes

README.md

File metadata and controls

45 lines (36 loc) · 875 Bytes

jade-phalcon

Jade Template Engine for Phalcon

To use Jade with your Phalcon application, just add to composer.json, in the require section:

"kylekatarnls/jade-phalcon": "dev-master"

Then register the template:

require '../vendor/autoload.php';

// ...
$di = new FactoryDefault();

// Setting up the view component
$di['view'] = function() {
    $view = new View();
    $view->setViewsDir('../app/views/');
    $view->registerEngines(array(
        ".jade" => function($view, $di) {
            return new Jade($view, $di, array(
				'cache' => '/tmp/myproject/jade',
				'prettyprint' => APP_ENV == 'development',
            ));
        }
    ));
    return $view;
};

Now you can add jade files in the views directory:

app/views/index.jade:

doctype html
html
  head
    title jade-phalcon
  body
    p Generetad with jade-phalcon