A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://github.com/pug-php/pug-phalcon below:

pug-php/pug-phalcon: Pug Template Engine for Phalcon

Pug Template Engine for Phalcon

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

"pug-php/pug-phalcon": "^1.0"

Or use the command line:

composer require pug-php/pug-phalcon

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(
        ".pug" => function($view, $di) {
            return new \Phalcon\Mvc\View\Engine\Pug($view, $di, array(
                'cache' => '/tmp/myproject/pug',
                'prettyprint' => APP_ENV == 'development',
            ));
        }
    ));

    return $view;
};

Now you can add pug files in the views directory:

app/views/index.pug:

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

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4